@charset "UTF-8";


.goodday-anchor-links:active .img-hover:first-child,
.goodday-anchor-links:focus .img-hover:first-child,
.goodday-anchor-links:hover .img-hover:first-child {
  opacity: 0;
  transform: scale(1.1);
}
.goodday-anchor-links:not(:active):not(:focus):not(:hover) .img-hover:last-child {
  opacity: 0;
  transform: scale(0.9);
}
.goodday-anchor-links .img-hover {
  transition: 0.25s var(--transition-timing);
  transition-property: opacity, transform;
}
.flex {
  display: flex;
}
.flex--all-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .flex--all-center.mobile-stack {
    flex-direction: column;
  }
}
.flex--align-start {
  align-items: flex-start;
}
.flex--align-center {
  align-items: center;
}
.flex--align-end {
  align-items: flex-end;
}
.flex--justify-start {
  justify-content: flex-start;
}
.flex--justify-center {
  justify-content: center;
}
.flex--justify-end {
  justify-content: flex-end;
}
.flex--justify-between {
  justify-content: space-between;
}
.flex--justify-around {
  justify-content: space-around;
}
.flex--row {
  flex-direction: row;
}
.flex--column {
  flex-direction: column;
}
.flex--wrap {
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
  .flex--md-row {
    flex-direction: row;
  }
  .flex--md-row-reverse {
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 959px) {
  .unflex--medium-down {
    display: inherit !important;
  }
}
@media only screen and (max-width: 767px) {
  .unflex--small {
    display: inherit !important;
  }
}
.d-none {
  display: none;
}
@media only screen and (min-width: 768px) {
  .d-md-none {
    display: none;
  }
  .d-md-unset {
    display: unset;
  }
}
@media only screen and (min-width: 960px) {
  .d-lg-none {
    display: none;
  }
  .d-lg-unset {
    display: unset;
  }
}
.h-100 {
  height: 100%;
}
.w-100 {
  width: 100%;
}
.page-width,
.page-width__small {
  max-width: 1340px;
  margin: 0 auto;
}
@media screen and (max-width: 1420px) and (min-width: 960px) {
  .page-width,
  .page-width__small {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .page-width,
  .page-width__small {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .page-width,
  .page-width__small {
    margin-left: 25px;
    margin-right: 25px;
  }
}
.page-width .heading,
.page-width__small .heading {
  margin-top: 1.48148em;
}
.gd-day-container {
  padding: 3.61111em 5.55556em;
}
@media only screen and (max-width: 767px) {
  .gd-day-container {
    padding: 65px 20px;
  }
}
.gd-day-section {
  padding: 130px;
}
@media only screen and (max-width: 767px) {
  .gd-day-section {
    padding: 40px 20px;
  }
}
.page-width__small {
  max-width: 67%;
}
@media only screen and (min-width: 960px) {
  .page-width__small {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 959px) {
  .page-width__small {
    max-width: none;
  }
}
.page {
  margin-top: 60px;
  margin-bottom: 60px;
}
.mt-12 {
  margin-top: 3rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.gap-4 {
  gap: 1rem;
}
.heading-fix h2,
.heading-fix h3,
.heading-fix h4,
.heading-fix h5,
.heading-fix h6 {
  margin-top: 1.5em;
  margin-bottom: 0.25em;
}
.heading-wrapper > * {
  margin: 0;
}
.grid-half {
  display: grid;
  width: 100%;
  align-items: flex-start;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 959px) {
  .grid-half {
    grid-template-columns: 1fr;
  }
}
.grid-thirds {
  display: grid;
  width: 100%;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 959px) {
  .grid-thirds {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
}
.grid-fourths {
  display: grid;
  width: 100%;
  align-items: flex-start;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 959px) {
  .grid-fourths {
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50%;
  }
}
.grid-gap-small {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.grid-gap-large {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.grid-gap-xlarge {
  grid-column-gap: 60px;
  grid-row-gap: 30px;
}
.grid-column-reverse .item {
  order: 1;
}
.grid-column-reverse .first {
  order: 0;
}
@media only screen and (max-width: 767px) {
  .unreverse-mobile.grid-column-reverse .item {
    order: 0;
  }
}
.grid--align-center {
  align-items: center;
}
@media only screen and (max-width: 1049px) {
  .desktop-only {
    display: none !important;
  }
}
@media only screen and (min-width: 960px) {
  .large-up-only {
    display: none !important;
  }
}
@media only screen and (max-width: 1049px) {
  .large-down-only {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .medium-up-only {
    display: none !important;
  }
}
@media only screen and (min-width: 960px) {
  .medium-down-only {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}

.text-cherry{
 color: #ff784f;
}
.text-cherry-faded {
  color: #ffc6b5;
}
.text-cherry-pastel {
  color: #ffede8;
}
.text-canteloupe-faded {
  color: #ffd568;
}
.text-canteloupe-pastel {
  color: #ffe39b;
}
.text-ciel-faded {
  color: #f7f7f9;
}
.text-ciel-pastel {
  color: #ece9f5;
}
.text-cerulean-faded {
  color: #8dbdf0;
}
.text-cerulean-pastel {
  color: #92c5ff;
}
.text-portage {
  color: #bf91ee;
}
.text-portage-faded {
  color: #cfaeef;
}
.text-portage-pastel {
  color: #f1e7f9;
}
.text-lima-faded {
  color: #b1e76e;
}
.text-lima-pastel {
  color: #c9ee9a;
}
.text-black {
  color: #1B2D57;
}
.text-beige {
  color: #F9EEEA;
}
.text-white {
  color: #ffffff;
}
.text-off-white {
  color: #F9F3F1;
}
.text-canteloupe {
  color: #ffb902;
}
.bg-cherry {
  background-color: #ff784f;
}
.bg-cherry-faded {
  background-color: #ffc6b5;
}
.bg-cherry-pastel {
  background-color: #ffede8;
}
.bg-canteloupe {
  background-color: #ffb902;
}
.bg-canteloupe-faded {
  background-color: #ffd568;
}
.bg-canteloupe-pastel {
  background-color: #ffe39b;
}
.bg-ciel {
  background-color: #bfbad0;
}
.bg-ciel-faded {
  background-color: #f7f7f9;
}
.bg-ciel-pastel {
  background-color: #ece9f5;
}
.bg-cerulean {
  background-color: #3289e5;
}
.bg-cerulean-faded {
  background-color: #8dbdf0;
}
.bg-cerulean-pastel {
  background-color: #92c5ff;
}
.bg-portage {
  background-color: #bf91ee;
}
.bg-portage-faded {
  background-color: #cfaeef;
}
.bg-portage-pastel {
  background-color: #f1e7f9;
}
.bg-lima {
  background-color: #81CD22;
}
.bg-lima-faded {
  background-color: #b1e76e;
}
.bg-lima-pastel {
  background-color: #c9ee9a;
}
.bg-black {
  background-color: #1B2D57;
}
.bg-beige {
  background-color :#F9EEEA;
}
.bg-white {
  background-color: #ffffff;
}
.bg-off-white {
  background-color:  #F9F3F1;;
}
.bg-cerulean-product {
  background: linear-gradient(
    180deg,
    rgba(146, 197, 255, 0.5) 0,
    transparent 100%
  );
}
.bg-canteloupe-product {
  background: linear-gradient(
    180deg,
    rgba(255, 227, 155, 0.5) 0,
    transparent 100%
  );
}
.filter-canteloupe {
  filter: hue-rotate(170deg) saturate(1.8);
}
.filter-ciel {
  filter: hue-rotate(50deg);
}
.weight-bold {
  font-weight: 700 !important;
}
.weight-800 {
  font-weight: 800 !important;
  font-size: 1.9em !important;
}
.weight-900 {
  font-weight: 900 !important;
}


h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-top: 0.3em;
}


.gd-day-title {
  font-family: Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
  font-weight: 900;
  font-size: 4.5em;
  line-height: 1;
  margin-bottom: 30px;
  color: #1b2d57;
}

.h1, .gd-day-h1 {
  font-family: Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
  font-weight: 900;
  font-size: 4em;
  line-height: 1;
  margin-bottom: 30px;
}
.gd-day-h2,
.h2 {
  font-family: Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
  font-weight: 900;
  font-size: 2.5em;
  line-height: 1;
  margin-bottom: 30px;
}
.gd-day-h3,
.h3 {
  font-family: Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
  font-weight: 900;
  font-size: 2em;
  line-height: 1;
}
.gd-day-h4,
.h4 {
  font-family:Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
  font-weight: 700;
  font-size: 1.9em;
  line-height: 1.2;
  color: #1b2d57;
}
.gd-day-h5,
.h5 {
  font-family:Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
  font-size: 1.7em;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.3;
  margin-bottom: 1.3em;
  color: #1B2D57;
}
.gd-day-h6,
.h6 {
  font-family:Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
  font-size: 0.88889em;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.3em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page__headings h2,
.page__headings h3,
.page__headings h4,
.page__headings h5,
.page__headings h6 {
  margin-top: 1.5em;
  margin-bottom: 0.25em;
}
small,
.small,
.small p {
  font-weight: 500;
  font-size: 0.9em;
  line-height: 156%;
}
.large,
.large p {
  font-size: 1.2em;
  line-height: 1.25;
}
@media only screen and (min-width: 768px) {
  .title-md {
    font-family:Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
    font-weight: 900;
    font-size: 3.5em;
    line-height: 1;
    margin-bottom: 30px;
  }
  .h3-md {
    font-family:Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
    font-weight: 900;
    font-size: 2em;
    line-height: 1;
  }
}
/* body,
input,
textarea,
button,
select {
  font-size: 18px;
  font-family: var(--font-primary);
  letter-spacing: normal;
  line-height: 1.4;
  font-weight: 400;
  color: var(--color-black);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeSpeed;
}
@media only screen and (max-width: 959px) {
  body,
  input,
  textarea,
  button,
  select {
    font-size: 15px;
    line-height: 1.68;
  }
}
@media only screen and (min-width: 1440px) {
  body,
  input,
  textarea,
  button,
  select {
    font-size: 1.25vw;
  }
} */
p:not(:last-of-type) {
  margin: 0 0 10px;
}
p:not(:last-of-type) img {
  margin: 0;
}
.goodday-anchor-links {
  text-decoration: underline;
  color: var(--color-black);
  cursor: pointer;
  transition: all var(--transition-timing) 0.25s;
}
/* .goodday-anchor-links:hover,
.goodday-anchor-links:focus,
.goodday-anchor-links:active {
  color: #ff784f;
} */
.line-through {
  text-decoration: line-through !important;
}
.underline {
  text-decoration: underline;
}
.no-underline,
.no-underline * {
  text-decoration: none;
}
em,
.italic {
  font-style: oblique;
}
b,
strong,
.bold {
  font-weight: 700;
}
sup,
sub {
  position: relative;
  font-size: 60%;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.5em;
}
blockquote {
  margin: 0;
  padding: 20px 40px 40px;
}
blockquote p {
  margin-bottom: 0;
}
blockquote p + cite {
  margin-top: 20px;
}
blockquote cite {
  display: block;
}
.no-scroll {
  overflow: hidden;
}
.no-scrollbar,
.section-instafeed #insta-feed > div {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar,
.section-instafeed #insta-feed > div::-webkit-scrollbar {
  display: none;
}
/* *,
input,
:before,
:after {
  box-sizing: border-box;
}
html {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
html,
body {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
} */
/* article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
input[type="text"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input[type="text"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
select::-ms-expand {
  display: none;
} */
.gd-day-img {
  border: 0 none;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
  width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}
.gd-day-img,
iframe {
  max-width: 100%;
  scrolling: yes;
}
.gd-day-img[data-sizes="auto"] {
  display: block;
  width: 100%;
  height: 100%;
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #1c1d1d;
}
main {
  min-height: 80vh;
}

/* button {
  background: none;
  border: none;
  display: inline-block;
  cursor: pointer;
} */
legend {
  border: 0;
  padding: 0;
}
button,
input[type="submit"] {
  cursor: pointer;
}
*:-moz-selection {
  color: var(--color-white);
  background: var(--color-cerulean);
  font-weight: 700;
}
*::selection {
  color: var(--color-white);
  background: var(--color-cerulean);
  font-weight: 700;
}
* {
  scrollbar-color: none var(--color-black);
  scrollbar-width: 6px;
}
*::-webkit-scrollbar {
  width: 6px;
}
*::-webkit-scrollbar-track {
  background: none;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color-black);
  border-radius: 0.55556em;
}
.button,
.btn {
  -moz-osx-font-smoothing: grayscale;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -webkit-appearance: none;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-font-smoothing: antialiased;
  -webkit-justify-content: center;
  align-items: center;
  background: #1B2D57;
  border-radius: 2.22222em;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  font-size: 1.2em;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0px;
  line-height: 1.32;
  min-width: 100px;
  overflow: hidden;
  padding: 0.96em 4.41111em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: color 0.25s ease-out;
  background: 0.25s ease-out;
  white-space: nowrap;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .button,
  .btn {
    padding: 10px 50px;
  }
}
.button:disabled,
.button.disabled,
.product-card-form.disabled .button.product-card-btn,
.product-card-form.sold-out .button.product-card-btn,
.section-product-panel .product-form.disabled .button.action-button,
.btn:disabled,
.btn.disabled,
.product-card-form.disabled .btn.product-card-btn,
.product-card-form.sold-out .btn.product-card-btn,
.section-product-panel .product-form.disabled .btn.action-button,
.product-card-form.disabled button.product-card-btn,
.product-card-form.sold-out button.product-card-btn,
.section-product-panel .product-form.disabled button.action-button,
.product-card-form.disabled input[type="submit"].product-card-btn,
.product-card-form.sold-out input[type="submit"].product-card-btn,
.section-product-panel
  .product-form.disabled,,
.product-card-form.sold-out input[type="reset"].product-card-btn,
.section-product-panel .product-form.disabled input[type="reset"].action-button,
.product-card-form.disabled input[type="button"].product-card-btn,
.product-card-form.sold-out input[type="button"].product-card-btn,
.section-product-panel
  .product-form.disabled
   {
  background: var(--color-ciel);
  color: var(--color-black);
  cursor: not-allowed;
}

.button:not(:disabled):not(.disabled):hover:before,
.button:not(:disabled):not(.disabled):active:before,
.button:not(:disabled):not(.disabled):focus:before,
.btn:not(:disabled):not(.disabled):hover:before,
.btn:not(:disabled):not(.disabled):active:before,
.btn:not(:disabled):not(.disabled):focus:before,
button:not(:disabled):not(.disabled):hover:before,
button:not(:disabled):not(.disabled):active:before,
button:not(:disabled):not(.disabled):focus:before {
  opacity: 1;
}
.button:before,
.btn:before {
  content: "";
  background: linear-gradient(
    105deg,
    #ff784f 9%,
    rgba(255, 198, 181, 0.81) 94%
  );
  position: absolute;
  opacity: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: opacity 0.25s var(--transition-timing);
  z-index: -1;
}
.btn-secondary {
  background: #ffffff;
  color: #1b2d57;
}
.btn-secondary:not(:disabled):not(.disabled):hover,
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled):focus {
  color: #1b2d57;
}
.btn-secondary:before {
  background: linear-gradient(
    103deg,
    #92c5ff 9%,
    rgba(146, 197, 255, 0.81) 94%
  );
}
.btn-transparent {
  background-color: transparent;
  padding: 0;
  min-width: 0;
  border: 0;
}
.btn-transparent:hover,
.btn-transparent:active,
.btn-transparent:focus {
  background-color: transparent !important;
  color: inherit !important;
}
.btn-transparent:before {
  content: none;
}
.btn-arrow {
  font-weight: 700;
}
.btn-arrow .icon-arrow {
  height: 0.61111em;
  width: 0.66667em;
}
@media only screen and (max-width: 767px) {
  .btn--mobile-wide {
    width: 100%;
  }
}
.btn-unset {
  padding: unset;
  min-width: unset;
}
.pattern-wrapper {
  line-height: 0;
  overflow: hidden;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  transform: translateY(calc(100% - 1px));
  width: 100%;
  z-index: 1;
}
.pattern-wrapper.top {
  top: 0;
  bottom: auto;
  transform: translateY(calc(-100% + 1px)) rotateX(180deg);
}
.pattern-wrapper .pattern {
  height: auto;
  width: 100%;
  min-width: 1110px;
  transition: inherit;
}

.ul-global {
  margin-bottom: 30px;
}
.ul-global .ul-global .li-global,
.ul-global .li-global
{
  margin-bottom: 10px;
}
.ul-global {
  list-style: disc outside;
}
.ul-global.square {
  list-style: square outside;
}
.ul-global.circle {
  list-style: circle outside;
}
.ul-global.disc {
  list-style: disc outside;
}
.ul-global.none {
  list-style: none outside;
  margin: 0;
  padding: 0;
}
.ul-global.none .li-global {
  margin: 0;
}
.ul-global.border {
  list-style: none outside;
}
.ul-global.border .li-global {
  border-bottom: 1px solid #1c1d1d;
  list-style: none outside none;
  padding: 10px 0;
  margin-bottom: 0;
}

ol.unlist,
.ul-global.unlist {
  padding-left: 0;
  margin-left: 0;
}
ol.unlist li,
.ul-global.unlist li {
  list-style-type: none;
}
.sr-only,
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
*:active,
*:focus {
  outline-color: #cdcdcd;
}
.no-outline {
  outline: none !important;
}
.hide {
  display: none !important;
}
.no-padding {
  padding: 0 !important;
}
.no-margin {
  margin: 0 !important;
}
.no-top-margin {
  margin-top: 0 !important;
}
.no-bottom-margin {
  margin-bottom: 0 !important;
}
.mb-sm {
  margin-bottom: 10px;
}
.mb-md {
  margin-bottom: 30px;
}
.mb-lg {
  margin-bottom: 65px;
}
.mt-sm {
  margin-top: 10px;
}
.mt-md {
  margin-top: 30px;
}
.mt-lg {
  margin-top: 65px;
}
.p-4 {
  padding: 3.61111em;
}
.full-width {
  width: 100%;
}
.width-50 {
  width: 50%;
}
.left-align,
.text-align--left,
.text-start,
.text-left {
  text-align: left;
}
.right-align,
.text-align--right,
.text-end {
  text-align: right;
}
.center,
.center-align,
.text-center {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .center-sm {
    text-align: center;
  }
}
div.center,
div.center-align {
  margin: 0 auto;
}
.uppercase {
  text-transform: capitalize;
  letter-spacing: 0.08em;
}
.font-bold {
  font-weight: 700;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translateZ(0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.section-announcement-bar li {
  padding: 0.94444em 0.77778em;
  width: 100%;
  opacity: 1;
  transition: opacity 0.25s var(--transition-timing);
}
.section-announcement-bar li:not(.active) {
  position: absolute;
  opacity: 0;
  transition-delay: 0.25s;
}
.section-announcement-bar li.active {
  z-index: 1;
}
.section-announcement-bar li > * {
  color: inherit;
  font-family: inherit;
  font-size: 1.22222em;
  font-weight: 900;
  margin: 0;
  text-align: center;
  white-space: nowrap;
}
.section-navigation {
  position: sticky;
  top: 0;
  z-index: 4;
}
.section-navigation nav {
  position: relative;
}
.section-navigation .content {
  background-color: transparent;
  color: var(--color-white);
  font-weight: 900;
  padding: 1.11111em 2.22222em;
  transition: color 0.25s var(--transition-timing),
    background-color 0.25s var(--transition-timing);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .section-navigation .content {
    padding: 20px;
  }
}
.section-navigation .content .left,
.section-navigation .content .right {
  height: 1.11111em;
  width: 30%;
  margin: 0.66667em 0;
}
.section-navigation .content .left > a:not(:last-of-type) {
  margin-right: 2.22222em;
}
.section-navigation .content .right > a:not(:last-of-type) {
  margin-right: 1.66667em;
}
.section-navigation .content .icon {
  height: 100%;
  width: auto;
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  .section-navigation .content .icon:not(.icon-logo) {
    height: 25px;
    width: 25px;
  }
}
.section-navigation .content a {
  color: inherit;
  position: relative;
  transition: transform 0.25s var(--transition-timing);
}
.section-navigation .content a:focus,
.section-navigation .content a:hover {
  transform: scale(1.1);
  transition: transform 0.3s cubic-bezier(0, 0, 0, 4);
}
.section-navigation .content .icon-logo {
  opacity: 0;
  transition: opacity 0.25s var(--transition-timing);
}
@media only screen and (max-width: 767px) {
  .section-navigation .content .icon-logo {
    width: 75px;
  }
}
.section-navigation .content .logo {
  height: 6.66667em;
  width: 6.66667em;
  max-width: none;
  position: absolute;
  top: calc(50% - 6.66667em / 2);
  left: calc(50% - 6.66667em / 2);
  transform: scale(1);
  transition: transform 0.25s var(--transition-timing);
}
@media only screen and (max-width: 767px) {
  .section-navigation .content .logo {
    height: 100px;
    width: 100px;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
  }
}
.section-navigation .pattern-wrapper {
  color: transparent;
  position: static;
  transform: none;
  transition: color 0.25s var(--transition-timing);
}
.section-navigation nav.active .content {
  color: var(--color-black);
  background-color: var(--color-off-white);
}
.section-navigation nav.active .content .icon-logo {
  opacity: 1;
}
.section-navigation nav.active .content .logo {
  transform: scale(0);
}
.section-navigation nav.active .pattern {
  color: var(--color-off-white);
}
.section-navigation nav.color-lock .content {
  color: var(--color-black);
}
.section-navigation nav.full-lock .content {
  background-color: var(--color-off-white);
  color: var(--color-black);
}
.section-navigation nav.full-lock .pattern-wrapper {
  color: var(--color-off-white);
}
.section-navigation .nav-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  color: var(--color-black);
  font-size: 30px;
  padding: 20px;
  clip-path: circle(0% at 30px 34px);
  -webkit-clip-path: circle(0% at 30px 34px);
  pointer-events: none;
  transition: 0.5s var(--transition-timing);
  transition-property: clip-path, -webkit-clip-path;
}
.section-navigation .nav-menu.active {
  clip-path: circle(150% at 30px 34px);
  -webkit-clip-path: circle(150% at 30px 34px);
  pointer-events: auto;
}
.section-navigation .nav-menu a {
  line-height: 1em;
  padding: 10px 0;
  transform-origin: left;
}
.section-navigation .nav-menu .close {
  margin-bottom: 30px;
}
.section-navigation .nav-menu .close .icon {
  height: 20px;
  width: 20px;
}
.section-navigation .nav-menu li {
  margin-bottom: 20px;
}
.section-navigation .nav-menu li .icon {
  width: 25px;
  height: auto;
  margin-right: 10px;
  overflow: visible;
}
.section-toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.section-toolbar ul {
  padding: 15px 30px 8px;
}
.section-toolbar ul a {
  font-weight: 900;
}
.section-toolbar ul a.active .img-wrapper {
  background-color: #92c5ff;
}
.section-toolbar ul a .img-wrapper {
  border-radius: 50px;
  height: 39px;
  width: 39px;
  padding: 9px;
}
.section-toolbar ul a .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-footer footer {
  overflow: hidden;
  display: grid;
  grid-template-rows: 8.88889em 13.11111em 3.33333em 1.61111em;
  grid-template-areas: "a . ." "a b b" "a c c" "d d d";
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .section-footer footer {
    font-size: inherit;
    grid-template-rows: auto;
    grid-template-areas: "a b" "c c" "d d";
  }
}
@media only screen and (max-width: 767px) {
  .section-footer footer {
    display: flex;
    flex-direction: column;
    margin-bottom: 87px;
  }
}
.section-footer li {
  margin: 0;
}
.section-footer .rainbow {
  grid-area: a;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .section-footer .rainbow {
    height: 300px;
    width: 300px;
    margin-top: auto;
  }
}
.section-footer .rainbow > img {
  object-fit: fill;
}
.section-footer .rainbow .store-locator {
  position: absolute;
  left: 3.61111em;
  bottom: -1.66667em;
  line-height: 0;
  width: 6.94444em;
  transition: transform 0.5s var(--transition-timing);
}
@media only screen and (max-width: 767px) {
  .section-footer .rainbow .store-locator {
    width: 125px;
    left: calc(50% - 62.5px);
    bottom: 0;
  }
}
.section-footer .rainbow .store-locator:not(.active) {
  transition: transform 0.5s var(--transition-timing) 0.25s;
}
.section-footer .rainbow .store-locator:not(.active) .speech-bubble {
  transform: scale(0);
  transition: transform 0.25s var(--transition-timing);
}
.section-footer .rainbow .store-locator .speech-bubble {
  position: absolute;
  left: 75%;
  bottom: 105%;
  background: white;
  border-radius: 3.33333em;
  padding: 1.11111em;
  transition: transform 0.25s var(--transition-timing) 0.25s;
  transform-origin: bottom left;
}
@media only screen and (max-width: 767px) {
  .section-footer .rainbow .store-locator .speech-bubble {
    width: 260px;
    left: calc(50% - 130px);
    transform-origin: bottom;
  }
}
.section-footer .rainbow .store-locator .speech-bubble p {
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}
.section-footer .rainbow .store-locator .speech-bubble .tail {
  position: absolute;
  top: 99%;
  left: 1.27778em;
}
@media only screen and (max-width: 767px) {
  .section-footer .rainbow .store-locator .speech-bubble .tail {
    transform: rotateY(180deg);
    left: 35px;
  }
}
.section-footer .footer-main {
  grid-area: b;
  padding: 3.61111em 2.22222em;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .section-footer .footer-main {
    flex-direction: column;
    width: 100%;
    margin-left: auto;
    padding: 65px 20px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .section-footer .footer-main {
    flex-direction: column;
    padding: 65px 20px 40px;
    order: -1;
  }
}
.section-footer .footer-main img {
  width: 16.66667em;
  object-fit: contain;
  margin-right: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .section-footer .footer-main img {
    width: 100%;
    margin: 0 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .section-footer .footer-main img {
    margin: 0;
    max-width: 375px;
    width: 100%;
  }
}
.section-footer .footer-main .main-links {
  height: 7.23333em;
  width: 22.22222em;
  font-weight: 700;
  letter-spacing: normal;
  margin: 0 0 -1.11111em;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .section-footer .footer-main .main-links {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .section-footer .footer-main .main-links {
    margin-top: 20px;
    max-width: 375px;
    width: 100%;
  }
}
.section-footer .footer-main .main-links li {
  margin: 0 0 1.11111em 3.61111em;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .section-footer .footer-main .main-links li {
    margin: 0 65px 20px 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-footer .footer-main .main-links li {
    margin: 20px 65px 0 0;
  }
}
.section-footer .footer-bottom {
  grid-area: c;
  padding: 1.11111em 2.22222em;
  position: relative;
}
@media only screen and (min-width: 1200px) {
  .section-footer .footer-bottom {
    background: transparent;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .section-footer .footer-bottom {
    font-size: 13.5px;
  }
}
@media only screen and (max-width: 767px) {
  .section-footer .footer-bottom {
    flex-direction: column-reverse;
    padding: 20px 20px 10px;
  }
}
.section-footer .footer-bottom .copyright {
  margin: 0 2em 0 0;
}
@media only screen and (max-width: 767px) {
  .section-footer .footer-bottom .copyright {
    margin: 0;
  }
}
.section-footer .footer-bottom .legal-links {
  margin: 0 3.61111em 0 0;
}
@media only screen and (max-width: 767px) {
  .section-footer .footer-bottom .legal-links {
    font-size: 15px;
    margin: 0;
    max-width: 420px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.section-footer .footer-bottom .legal-links li {
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .section-footer .footer-bottom .legal-links li {
    padding: 0 5px;
  }
}
.section-footer .footer-bottom .legal-links li:not(:last-child) {
  margin-right: 2em;
}
@media only screen and (max-width: 767px) {
  .section-footer .footer-bottom .legal-links li:not(:last-child) {
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .section-footer .footer-bottom .social-media {
    font-size: 18px;
  }
}
.section-footer .footer-bottom .social-media li:not(:last-child) {
  margin-right: 1.11111em;
}
.section-footer .footer-bottom .social-media li a {
  display: block;
  line-height: 0;
}
.section-footer .footer-bottom .social-media li a img {
  height: 1.11111em;
  width: auto;
}
.section-footer .legal-message {
  position: relative;
  grid-area: d;
  text-align: end;
  font-size: 0.77778em;
  padding: 0.5em 2.85714em;
  background-color: #f9eeea;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .section-footer .legal-message {
    font-size: 13.5px;
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .section-footer .legal-message {
    text-align: center;
    padding: 10px 20px;
  }
}
.section-instafeed {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1200px) {
  .section-instafeed {
    margin-bottom: -8.33333em;
  }
}
.section-instafeed #insta-feed {
  padding: 2.22222em 0 1.11111em !important;
  margin: 0 !important;
}
.section-instafeed #insta-feed > div {
  display: flex;
  overflow: scroll;
}
.section-instafeed #insta-feed > div .slide-page {
  width: 17.11111em;
  flex-shrink: 0;
}
@media only screen and (max-width: 1199px) {
  .section-instafeed #insta-feed > div .slide-page {
    width: 308px;
  }
}
.section-instafeed #insta-feed > div .slide-page:first-child {
  margin-left: 2.22222em;
}
.section-instafeed #insta-feed > div .slide-page:not(:last-child) {
  margin-right: 1.11111em;
}
.section-instafeed #insta-feed > div .slide-page .instafeed-container {
  width: 100% !important;
  padding-top: 100% !important;
}
.section-instafeed
  #insta-feed
  > div
  .slide-page
  .instafeed-lightbox
  .lightbox-instagram {
  top: calc(50% - 262.5px);
  margin-top: 0 !important;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-instafeed
    #insta-feed
    > div
    .slide-page
    .instafeed-lightbox
    .lightbox-instagram {
    top: calc(50% - 140px);
  }
}
@media only screen and (max-width: 767.98px) {
  .section-instafeed
    #insta-feed
    > div
    .slide-page
    .instafeed-lightbox
    .lightbox-instagram {
    height: calc(100% - 220px) !important;
    margin-top: 0 !important;
    top: calc(50% - ((100% - 220px) / 2)) !important;
  }
}
.section-instafeed .handle {
  display: block;
  font-weight: 700;
  letter-spacing: normal;
  margin: 0;
  padding: 0 2.22222em;
}
@media only screen and (max-width: 1199px) {
  .section-instafeed .handle {
    padding: 0;
    text-align: center;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  background: black;
  opacity: 0;
  z-index: 5;
  transition: opacity 0.25s var(--transition-timing);
}
.overlay.active {
  height: 100vh;
  width: 100vw;
  opacity: 0;
}
.ajaxcart-container {
  background: white;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 40vw;
  z-index: 16;
  transform: translate(100%);
  transition: transform 0.25s var(--transition-timing);
}
@media only screen and (min-width: 768px) {
  .ajaxcart-container {
    min-width: 25em;
  }
}
@media only screen and (max-width: 767px) {
  .ajaxcart-container {
    width: 100vw;
    transform: translate(100vw);
  }
}
.ajaxcart-container.active {
  transform: translate(0);
}
.ajaxcart-container .cart-items,
.ajaxcart {
  height: 100%;
}
.ajaxcart input[type="number"]::-webkit-inner-spin-button,
.ajaxcart input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
@media only screen and (max-width: 959px) {
  .ajaxcart {
    overflow: hidden scroll;
  }
}
.ajaxcart--header {
  padding: 20px;
}
.ajaxcart--header .h5 {
  font-weight: 900;
}
.ajaxcart--header .h5 > span {
  vertical-align: middle;
}
.ajaxcart--empty {
  padding: 20px;
}
.ajaxcart--empty p {
  font-weight: 900;
}
.ajaxcart--empty button,
.ajaxcart--empty .button {
  width: 100%;
}
.ajaxcart--empty button:not(:last-child),
.ajaxcart--empty .button:not(:last-child) {
  margin-right: 20px;
}
.ajaxcart--items {
  height: 100%;
  overflow: auto;
}
.ajaxcart--item {
  display: grid;
  grid-template-columns: 4em 1fr;
  grid-gap: 1.33333em;
  padding: 1.33333em;
}
.ajaxcart--item .ajaxcart--item-title {
  font-weight: 900;
}
.ajaxcart--item .ajaxcart--bottle-count {
  margin-right: 1em;
}
.ajaxcart--item .ajaxcart--recharge-item {
  font-size: 0.93333em;
  white-space: nowrap;
}
.ajaxcart--item .ajaxcart--recharge-item .icon-frequency {
  margin: 0 0.19444em;
}
.ajaxcart--item .ajaxcart--recharge-item > span {
  font-weight: 700;
}
.ajaxcart--item .ajaxcart--item-bottom {
  margin-top: 1.2em;
}
.ajaxcart--item .ajaxcart--item-bottom .qty-box {
  border-radius: 2.66667em;
  padding: 0.33333em 0.66667em;
}
.ajaxcart--item .ajaxcart--item-bottom .qty-box input {
  padding: 0 1em;
  width: 3.33333em;
}
.ajaxcart--item .ajaxcart--item-bottom .price {
  font-weight: 900;
}
.ajaxcart--item .ajaxcart--item-bottom .ajaxcart--item-remove {
  height: 1.06667em;
  width: 1.06667em;
  background: var(--color-black);
  color: var(--color-white);
  margin-left: 0.66667em;
  padding: 0.26667em;
  border-radius: 3.33333em;
}
.ajaxcart--item .ajaxcart--item-bottom .ajaxcart--item-remove .icon {
  transform: rotate(45deg);
  height: 100%;
  width: 100%;
}
.ajaxcart--recommendation .ajaxcart--recommendation-form {
  display: grid;
  grid-template-columns: 4em 1fr;
  grid-gap: 1.33333em;
  padding: 1em 1.33333em;
  margin: 0;
}
.ajaxcart--recommendation
  .ajaxcart--recommendation-form
  .ajaxcart--recommendation-subtitle {
  margin: 0;
  font-weight: 900;
  font-size: 0.93333em;
}
.ajaxcart--recommendation
  .ajaxcart--recommendation-form
  .ajaxcart--recommendation-title {
  font-size: 1.2em;
  font-weight: 900;
  margin: 0 0 1em;
}
.ajaxcart--recommendation
  .ajaxcart--recommendation-form
  .recommendation--btn-container
  .btn {
  padding: 0.73333em 1.6em;
  font-size: 1.06667em;
}
.ajaxcart--recommendation
  .ajaxcart--recommendation-form
  .ajaxcart--recommendation-remove {
  font-size: 0.8em;
  letter-spacing: 0.044em;
  text-transform: uppercase;
}
.ajaxcart--footer {
  border-top: 0.06667em solid var(--color-white);
  background: var(--color-beige);
  padding: 1.33333em;
  flex-shrink: 0;
}
.ajaxcart--footer .h6 {
  font-size: 1.06667em;
}
.ajaxcart--footer .btn {
  font-size: 1.46667em;
}
.ajaxcart--shipping-upsell {
  position: relative;
  padding-top: 3.5em;
}
.ajaxcart--shipping-upsell .progress-info--wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: calc(100% - var(--shipping-progress) - 2.22222em);
  width: auto;
  max-width: 100%;
  min-width: max-content;
}
.ajaxcart--shipping-upsell .progress-info {
  background: var(--color-white);
  border-radius: 3.7037em;
  height: 2.77778em;
  width: max-content;
  margin: 0;
  padding: 0 1.2963em;
  position: relative;
}
.ajaxcart--shipping-upsell .progress-info:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 1.66667em;
  border-left: 0.55556em solid transparent;
  border-right: 0.55556em solid transparent;
  border-top: 0.44444em solid var(--color-white);
}
.ajaxcart--shipping-upsell .progress-meter {
  background: var(--color-white);
  border-radius: 1.11111em;
  height: 0.38889em;
  min-height: 7px;
  position: relative;
}
.ajaxcart--shipping-upsell .progress-meter .progress {
  right: unset;
  max-width: 100%;
}
.cart--page {
  width: 60%;
  margin: 0 auto;
}
.cart--page .ajaxcart {
  height: auto;
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  .cart--page {
    width: 100%;
  }
}
.hero-image {
  position: relative;
  display: block;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media only screen and (max-width: 767px) {
  .hero-image.stack {
    display: flex;
    flex-direction: column-reverse;
  }
  .hero-image.stack .hero-image__content {
    position: unset;
    transform: none;
    margin: 2em auto 3em;
  }
}
@media only screen and (min-width: 1050px) {
  .hero-image--full-size {
    height: 80vh;
  }
}
@media only screen and (max-width: 767px) {
  .hero-image--full-size .hero-image__content {
    position: absolute;
    top: 100px;
  }
  .hero-image--full-size p {
    margin: 10px 0;
  }
}
@media only screen and (min-width: 960px) {
  .hero-image--medium {
    height: 634px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .hero-image--medium {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-image--medium {
    display: flex;
    flex-direction: column-reverse;
  }
  .hero-image--medium .hero-image__content {
    margin-top: 65px;
  }
  .hero-image--medium .hero-image__image {
    min-height: 375px;
  }
}
.hero-image__content {
  left: 0;
  right: 0;
  z-index: 2;
  position: absolute;
}
.hero-image__content.vertical-align--top {
  top: 40%;
}
@media only screen and (max-width: 767px) {
  .hero-image__content.vertical-align--top {
    top: 15%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .hero-image__content.vertical-align--top {
    top: 35%;
  }
}
.hero-image__content.vertical-align--center {
  top: 50%;
}
.hero-image__content.vertical-align--bottom {
  top: 80%;
}
@media only screen and (min-width: 768px) {
  .hero-image__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
  }
}
.hero-image__image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  object-fit: cover;
  font-family: "object-fit: cover";
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .hero-image__image {
    min-height: 470px;
  }
}
.product-section {
  max-width: 100vw;
}
.product--images {
  max-width: 50vw;
  position: relative;
}
.product--thumbnail-container {
  position: absolute;
  bottom: 30px;
}
.product--thumbnail-container .slick-track {
  display: flex;
  align-items: center;
  width: auto !important;
}
.product--thumbnail-container .slick-current img {
  border: 2px solid #e6e6e6;
}
.product--thumbnail-container ul {
  width: 100%;
}
.product--thumbnail {
  display: block;
  margin: 0 10px;
  width: auto !important;
  cursor: pointer;
}
.product--thumbnail img {
  width: 60px;
  height: 50px;
  object-fit: cover;
  border: 2px solid #fff;
  background-color: #fff;
}
.product--panel {
  padding-right: 30px;
}
.qty-box {
  background: var(--color-white);
  border-radius: 40px;
  padding: 5px 10px;
}
.qty-box input {
  border: 0;
  padding: 0 15px;
  width: 50px;
  text-align: center;
  -moz-appearance: textfield;
}
.qty-box input::-webkit-outer-spin-button,
.qty-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.hidden-select {
  display: none;
}
.custom-select {
  position: relative;
  height: 60px;
  margin-bottom: 30px;
}
.custom-select.open .custom-select--options {
  padding-right: 0;
}
.custom-select.open .custom-select--options .custom-select--arrow {
  transform: rotate(180deg);
}
.custom-select.open .custom-select--options .select-option {
  display: flex;
  border-bottom: 1px solid var(--color-black);
  transition: background-color 0.1s ease;
}
.custom-select.open .custom-select--options .select-option:hover {
  background-color: #e6e6e6;
}
.custom-select.open .custom-select--options .select-option:last-of-type {
  border-bottom: 0;
}
.custom-select--options {
  position: absolute;
  z-index: 1;
  width: 100%;
  border: 2px solid var(--color-black);
  cursor: pointer;
  background: #fff;
  padding-right: 50px;
}
.custom-select--arrow {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0px;
  width: 64px;
  height: 56px;
  padding: 0 22px;
  transition: all 0.2s ease;
  transform-origin: 32px center;
}
.custom-select--arrow:after {
  position: relative;
  top: auto;
  right: auto;
}
.select-option {
  display: none;
  padding: 16px 20px;
  height: 56px;
}
.select-option.active {
  display: flex;
}
@media only screen and (max-width: 959px) {
  .select-option {
    padding: 16px 10px;
  }
}
.variant--swatches {
  margin-bottom: 30px;
}
.variant--swatch {
  position: relative;
}
.variant--swatch label {
  border: 2px solid var(--color-black);
  padding: 10px 30px;
  cursor: pointer;
  margin: 0 10px 0 0;
  transition: all 0.25s var(--transition-timing);
}
.variant--swatch input[type="radio"] {
  position: absolute;
  top: -10000px;
  left: -10000px;
}
.variant--swatch input[type="radio"]:checked + label,
.variant--swatch label:hover {
  background-color: var(--color-black);
  color: #fff;
}
.section-polaroids section {
  padding: 5.55556em 2.22222em;
  position: relative;
}
@media only screen and (min-width: 960px) and (max-width: 1049px) {
  .section-polaroids section {
    font-size: clamp(15px, 1.6vw, 18px);
  }
}
@media only screen and (max-width: 959px) {
  .section-polaroids section {
    padding: 20px 0;
  }
}
.section-polaroids section .index-rainbow-1,
.section-polaroids section .index-rainbow-2 {
  position: absolute;
  z-index: 0;
}
.section-polaroids section .index-rainbow-1 {
  width: 44.44444em;
  right: 0;
  bottom: 50%;
}
@media only screen and (max-width: 959px) {
  .section-polaroids section .index-rainbow-1 {
    top: -890px;
    bottom: unset;
    right: 0;
    width: 160%;
    max-width: unset;
  }
}
.section-polaroids section .index-rainbow-2 {
  width: 32.22222em;
  top: 50%;
  left: 40%;
}
.section-polaroids section ul {
  position: relative;
}
@media only screen and (max-width: 959px) {
  .section-polaroids section ul {
    width: 100%;
    padding-top: calc(clamp(288px, 90vw, 450px) * 3);
  }
}
.section-polaroids section li {
  background: #fff;
  display: inline-block;
  flex-shrink: 0;
  height: min-content;
  opacity: 1;
  padding: 1.11111em 1.11111em 1.66667em;
}
.section-polaroids section li:first-of-type {
  margin-left: -20.83333em;
  margin-right: -22.22222em;
  z-index: 2;
}
.section-polaroids section li:nth-of-type(2) {
  order: -1;
  margin-top: 8.88889em;
  z-index: 1;
}
.section-polaroids section li:last-of-type {
  margin-top: 15.05556em;
  z-index: 0;
}
@media only screen and (max-width: 959px) {
  .section-polaroids section li {
    position: absolute;
    margin: 0 !important;
    top: 0;
    left: calc(50% - (clamp(288px, 90vw, 450px) / 2));
    width: clamp(288px, 90vw, 450px);
    height: auto;
  }
  .section-polaroids section li:nth-of-type(2) {
    transform: translateY(80%);
  }
  .section-polaroids section li:last-of-type {
    transform: translateY(160%);
  }
}
.section-polaroids section li img {
  width: 36.77778em;
}
@media only screen and (max-width: 959px) {
  .section-polaroids section li img {
    width: 100%;
  }
}
.section-collection-sliders {
  position: relative;
}
.section-collection-sliders .rainbow {
  top: 0;
  right: 0;
  width: 16.66667em;
  max-width: 35%;
}
.section-collection-sliders .collection-list > li {
  position: relative;
}
.section-collection-sliders .collection-list > li:not(:last-child) {
  margin-bottom: 2.22222em;
}
.section-collection-sliders .collection-slider li {
  top: 21.66667em;
  padding: 0 3.88889em;
}
@media only screen and (max-width: 767px) {
  .section-collection-sliders .collection-slider li {
    top: 250px;
    padding: 0 70px;
  }
}
.section-collection-slider {
  position: relative;
}
.section-collection-slider .rainbow {
  top: 0;
  right: 0;
  width: 16.66667em;
  max-width: 35%;
}
.section-collection-slider .collection-slider li {
  top: 21.66667em;
  padding: 0 3.88889em;
}
@media only screen and (max-width: 767px) {
  .section-collection-slider .collection-slider li {
    top: 250px;
    padding: 0 70px;
  }
}
.section-collection-grid section {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .section-collection-grid .collection-card {
    padding: 20px;
  }
}
.section-collection-grid .collection-card .h1 {
  margin: 0;
}
.section-collection-grid .collection-card,
.section-collection-grid .collection-card ul {
  padding: 3.61111em;
}
@media only screen and (max-width: 767px) {
  .section-collection-grid .collection-card,
  .section-collection-grid .collection-card ul {
    padding: 0;
  }
}
.section-collection-grid .collection-card li,
.section-collection-grid .collection-card ul li {
  padding: 1.66667em 3.05556em 0;
  width: calc(100% / 3);
  margin-bottom: 3.61111em;
}
@media only screen and (max-width: 1199px) {
  .section-collection-grid .collection-card li,
  .section-collection-grid .collection-card ul li {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .section-collection-grid .collection-card li,
  .section-collection-grid .collection-card ul li {
    width: 100%;
  }
}
.product-card {
  height: 30.55556em;
}
@media only screen and (max-width: 575px) {
  .product-card {
    height: 350px;
  }
}
.product-card .product-card-link {
  height: 100%;
  position: relative;
}
.product-card .product-card-link:active .badge,
.product-card .product-card-link:focus .badge,
.product-card .product-card-link:hover .badge {
  right: 0;
  transform: translate(50%);
}
.product-card .badge {
  height: auto;
  width: 2.5em;
  position: absolute;
  top: 1.38889em;
  right: 3.33333em;
  z-index: 1;
  transition: 0.25s var(--transition-timing);
  transition-property: right, transform;
}
.product-card .aspect-ratio {
  position: relative;
  height: 100%;
  width: 100%;
  margin-bottom: 10px;
}
.product-card .aspect-ratio > * {
  position: absolute;
  height: 100%;
  width: 100%;
}
.product-card .h4,
.product-card .h6,
.product-card .small {
  font-weight: 800;
  margin: 0;
}
.product-card .h4 {
  margin-bottom: 8px;
}
.product-card .h6 {
  margin-bottom: 4px;
}
.product-card .small {
  margin-bottom: 15px;
}
.section-contact {
  padding: 0 20px;
}
.section-contact .titlebar {
  margin: 40px auto;
}
@media only screen and (min-width: 768px) {
  .section-contact .titlebar {
    width: 70vw;
  }
}
@media only screen and (max-width: 575px) {
  .section-contact .titlebar {
    flex-direction: column;
  }
}
.section-contact .titlebar .social-icons li {
  padding: 0 10px;
  line-height: 0;
}
.section-contact .titlebar .social-icons li img {
  height: 20px;
  width: auto;
}
.section-contact .contact-wrapper {
  margin: auto;
}
@media only screen and (max-width: 1049px) {
  .section-contact .contact-wrapper {
    flex-direction: column;
  }
}
@media only screen and (min-width: 768px) {
  .section-contact .contact-wrapper {
    width: 70vw;
  }
}
@media only screen and (min-width: 1050px) {
  .section-contact form {
    width: 38vw;
    margin-right: 2.22222em;
  }
}
@media only screen and (max-width: 575px) {
  .section-contact form > div {
    flex-direction: column;
  }
}
.section-contact form label {
  position: relative;
  margin-bottom: 3.11111em;
}
.section-contact form label:first-of-type {
  margin-right: 1.11111em;
}
.section-contact form label input,
.section-contact form label textarea {
  padding: 0.66667em 1em;
}
.section-contact form label input.empty:not(:focus) + .label,
.section-contact form label textarea.empty:not(:focus) + .label {
  top: 0.66667em;
  left: 1em;
}
.section-contact form label .label {
  line-height: 1;
  position: absolute;
  top: -1.25em;
  left: 0;
  transition: top 0.25s var(--transition-timing),
    left 0.25s var(--transition-timing);
}
.section-contact form .btn {
  display: block;
  margin-left: auto;
}
.section-contact .contact-links > span {
  display: block;
}
.section-contact .contact-links .customer-service,
.section-contact .contact-links .press,
.section-contact .contact-links .donations {
  margin-bottom: 1.66667em;
}
.section-contact .contact-links h4 {
  margin: 0 0 0.37037em;
}
.section-contact .contact-links .shop-contact {
  margin-top: 2.22222em;
}
.section-contact .contact-links .shop-contact .address {
  margin: 0.46296em 0 0;
}
.section-faq > section {
  margin: 3.6em 20px;
}
.search-bar {
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 60px;
  font-size: 1.5em;
  margin: auto;
  padding: 0.75em;
  transition: border-color 0.25s var(--transition-timing);
}
@media only screen and (min-width: 768px) {
  .search-bar {
    width: 40vw;
  }
}
.search-bar:active,
.search-bar:focus,
.search-bar:hover {
  border-color: var(--color-canteloupe);
}
.search-bar .icon-search {
  min-height: 0.9em;
  min-width: 0.9em;
  max-height: 0.9em;
  max-width: 0.9em;
  margin-right: 0.8em;
}
.search-bar input {
  background: transparent !important;
  border: none;
  border-radius: 0;
  font-size: 1em;
  padding: 0;
}
.section-faq .faq-wrapper,
.section-faq .search-results {
  margin: 3.61111em auto;
}
@media only screen and (min-width: 768px) {
  .section-faq .faq-wrapper,
  .section-faq .search-results {
    width: 56vw;
  }
}
.section-faq .faq-wrapper {
  position: relative;
  min-height: 0;
  transition: min-height 0.25s var(--transition-timing);
}
.section-faq .faq-wrapper .category-button {
  font-weight: 900;
  margin: 0.25em 0 0.5em;
}
.section-faq .faq-wrapper .category-button:first-of-type {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .section-faq .faq-wrapper .category-button {
    font-size: 2.5em;
  }
}
@media only screen and (min-width: 768px) {
  .section-faq .faq-wrapper .category-button {
    margin: 1em 0 0;
    border-radius: 2.77778em;
    padding: 0.27em 0.5em;
    width: fit-content;
  }
  .section-faq .faq-wrapper .category-button:active,
  .section-faq .faq-wrapper .category-button:focus,
  .section-faq .faq-wrapper .category-button:hover {
    color: var(--color-cherry);
  }
  .section-faq .faq-wrapper .category-button.alive {
    color: var(--color-cherry);
  }
}
.section-faq .faq-wrapper .subcategory-button {
  margin: 0.25em 0 0.5em 0.5em;
  font-weight: 900;
  font-size: 1.6em;
}
@media only screen and (min-width: 768px) {
  .section-faq .faq-wrapper .subcategory-button {
    margin: 0 0 0.75em 1em;
    font-size: 1.1em;
    font-weight: 800;
  }
  .section-faq .faq-wrapper .subcategory-button.alive {
    color: var(--color-cherry);
  }
  .section-faq .faq-wrapper .subcategory-button:not(.active) {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .section-faq .faq-wrapper .category-group {
    position: absolute;
    top: 0;
    left: 25%;
    right: 0;
  }
  .section-faq .faq-wrapper .category-group:not(.active) {
    opacity: 0;
    pointer-events: none;
  }
}
.section-faq .faq {
  margin-bottom: 1.7em;
  padding-left: 1.7em;
  position: relative;
}
.section-faq .faq .question {
  display: block;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 0.4em;
  transition: opacity 0.25s var(--transition-timing);
}
.section-faq .faq .question.active .y {
  transform: scaleY(0);
}
.section-faq .faq .question .icon-plus {
  margin-right: 0.8em;
  height: 0.47em;
  width: 0.47em;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.section-faq .faq .question .icon-plus .y {
  transform-origin: center;
  transition: transform 0.25s var(--transition-timing);
}
.section-faq .faq .answer * {
  margin: 0;
}
.page-about .about-hero section {
  height: 39.77778em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .page-about .about-hero section {
    font-size: 11px;
    height: clamp(500px, 130vw, 730px);
  }
}
.page-about .about-hero section .content {
  height: 100%;
  width: 25.27778em;
  margin-left: auto;
  padding: 6.94444em 2.77778em;
  position: relative;
  text-align: end;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .page-about .about-hero section .content {
    margin: auto;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: auto;
    max-width: unset;
    padding: 140px 20px 40px;
  }
}
.page-about .about-hero section .content .h1 {
  margin: 0;
}
.page-about .about-hero section .content .h4 {
  margin: 0.55556em 0 0;
}
.page-about .about-hero section .content .title-shadow {
  font-size: 1.51852em;
  font-weight: 800;
  text-shadow: 0.03659em 0.03659em #F9F3F1;
  white-space: nowrap;
}
.page-about .about-alternate-rows section {
  position: relative;
}
.page-about .about-alternate-rows section .row-1 {
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .page-about .about-alternate-rows section .row-1 {
    flex-direction: column;
  }
}
.page-about .about-alternate-rows section .row-1 .img-wrapper {
  height: 76.38889em;
  margin-top: -43.33333em;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .page-about .about-alternate-rows section .row-1 .img-wrapper {
    height: auto;
    margin-top: -105vw;
  }
}
.page-about .about-alternate-rows section .row-1 .img-wrapper img {
  position: sticky;
  top: 0;
}
.page-about .about-alternate-rows section .row-1 .content {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .page-about .about-alternate-rows section .row-2 {
    flex-direction: column;
  }
}
.page-about .about-alternate-rows section .img-wrapper {
  width: 56.25vw;
  min-width: 35%;
}
@media only screen and (max-width: 767px) {
  .page-about .about-alternate-rows section .img-wrapper {
    width: 100%;
  }
}
.page-about .about-alternate-rows section .content {
  font-size: 1.66667em !important;
  line-height: 1.3;
  margin: 1.33333em;
  padding: 3.33333em 2.16667em;
  width: 43.75vw;
}
@media only screen and (max-width: 767px) {
  .page-about .about-alternate-rows section .content {
    margin: 0;
    padding: 40px 20px;
    width: 100%;
  }
}
.page-about .about-alternate-rows section .content * {
  margin: 0;
}
.page-about .about-alternate-rows section .rainbow {
  top: 3%;
}
@media only screen and (max-width: 1049px) {
  .page-about .about-alternate-rows section .rainbow {
    top: 20%;
  }
}
@media only screen and (max-width: 767px) {
  .page-about .about-alternate-rows section .rainbow {
    position: relative;
    top: unset;
    margin-top: -25vw;
    margin-bottom: -20vw;
  }
}
.page-about .about-image section {
  line-height: 0;
}
@media only screen and (max-width: 767px) {
  .page-about .about-image section {
    height: 61vw;
  }
  .page-about .about-image section img {
    height: 100%;
    object-fit: cover;
    object-position: right;
  }
}
.page-about .about-icons section {
  padding: 5.55556em 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .page-about .about-icons section {
    padding: 40px 20px;
  }
}
.page-about .about-icons section > .content {
  margin: auto;
  max-width: 43.33333em;
}
.page-about .about-icons section > .content .h1 {
  margin: 0 0 0.40741em;
}
.page-about .about-icons section > .content .h4 {
  margin: 0 0 2.40741em;
}
@media only screen and (max-width: 767px) {
  .page-about .about-icons section > .content .h4 {
    margin-bottom: 30px;
  }
}
.page-about .about-icons section > .content .icons {
  border-radius: 1.66667em;
  max-width: 27.61111em;
  padding: 2.22222em !important;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page-about .about-icons section > .content .icons {
    padding: 20px !important;
  }
}
.page-about .about-icons section > .content .icons .icon {
  display: grid;
  grid-template-columns: 3.88889em 1fr;
  grid-gap: 2.11111em;
}
.page-about .about-icons section > .content .icons .icon:not(:last-child) {
  margin-bottom: 1.66667em;
}
.page-about .about-icons section > .content .icons .icon * {
  margin: 0;
}
.page-about .about-icons section > .content .icons .icon img {
  height: 3.33333em;
  width: 3.88889em;
}
.page-about .about-icons section > .content .icons .icon .content .h5 {
  margin-bottom: 0.53333em;
}
.page-about .about-icons section .rainbow {
  max-width: 20em;
}
.page-about .about-icons section .rainbow:first-of-type {
  top: 0;
  left: 0;
  transform: rotate(180deg);
}
.page-about .about-icons section .rainbow:last-of-type {
  bottom: 0;
  right: 0;
}
.page-about .about-image-grid section {
  padding: 60px 60px 0;
}
@media only screen and (max-width: 767px) {
  .page-about .about-image-grid section {
    flex-direction: column-reverse;
    padding: 60px 40px 0;
  }
}
@media only screen and (max-width: 575px) {
  .page-about .about-image-grid section {
    padding: 40px 20px 0;
  }
}
.page-about .about-image-grid section .img-wrapper {
  min-width: 45%;
  max-width: 32em;
  margin-right: 3em;
}
@media only screen and (max-width: 767px) {
  .page-about .about-image-grid section .img-wrapper {
    margin: 40px 0 0;
    max-width: 80%;
  }
}
.page-about .about-image-grid section .content {
  max-width: 34.44444em;
}
@media only screen and (max-width: 767px) {
  .page-about .about-image-grid section .content {
    max-width: unset;
    text-align: center;
  }
}
.page-about .about-image-grid section .content * {
  margin: 0;
}
.page-about .about-image-grid section .content .h1 {
  margin-bottom: 0.27778em;
}
.section-image-grid section {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .section-image-grid section.half-width .img-wrapper {
    width: 55%;
  }
  .section-image-grid section.full-width .img-wrapper {
    position: absolute;
    height: 100%;
    width: 100%;
  }
}
.section-image-grid section .img-wrapper {
  align-self: flex-end;
  line-height: 0;
}
.section-image-grid section .img-wrapper img {
  height: 100%;
  width: 100%;
}
.section-image-grid section .content {
  position: relative;
  width: 45%;
}
@media only screen and (max-width: 767px) {
  .section-image-grid section .content {
    padding-top: 20px;
  }
}
.section-image-grid section .content .large {
  margin-top: 0;
  margin-bottom: 0.23256em;
}
.section-image-grid section .content .title {
  margin-top: 0;
  margin-bottom: 0.19048em;
}
@media only screen and (max-width: 767px) {
  .section-image-grid section .img-wrapper,
  .section-image-grid section .content {
    width: 100%;
  }
}
.section-image-grid-secondary section {
  position: relative;
}
.section-image-grid-secondary section .index-rainbow {
  position: absolute;
  top: 0;
  left: 0;
  width: 24.83333em;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .section-image-grid-secondary section .index-rainbow {
    width: 100%;
  }
}
.section-image-grid-secondary section .rainbow {
  left: 0;
  width: 300px;
  max-width: 25%;
}
.section-image-grid-secondary section .img-wrapper {
  line-height: 0;
}
@media only screen and (min-width: 768px) {
  .section-image-grid-secondary section .img-wrapper {
    width: 50%;
  }
}
.section-image-grid-secondary section .img-wrapper img {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}
.section-image-grid-secondary section .content {
  position: relative;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .section-image-grid-secondary section .content {
    padding-top: 20px;
  }
}
.section-image-grid-secondary section .content .h1 {
  /* max-width: 8.33333em; */
  margin: 0 auto 0.22222em;
  color: #1B2D57 !important;
}
.section-image-grid-secondary section .content .h5 {
  /* max-width: 20em; */
  max-width: 29em;
}

.section-image-grid-secondary section .content .h5 > p {
    font-size: 0.8em;
  }


@media only screen and (max-width: 767px) {
  .section-image-grid-secondary section .img-wrapper,
  .section-image-grid-secondary section .content {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
    .section-image-grid-secondary section .content {
      position: relative;
      z-index:1;
    }
  }


.section-index-image-grid .img-wrapper {
  position: relative;
}

.bg-cerulean-pastel{
  padding: 5.22222em !important;
}

@media only screen and (max-width: 1049px) {
  .section-index-image-grid .img-wrapper img {
    max-width: 500px;
    margin: auto;
  }
}
.section-icon-grid-slider section {
  padding: 2.22222em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .section-icon-grid-slider section {
    padding: 40px 0 !important;
  }
  .section-icon-grid-slider section .slider-wrapper {
    padding: 0 !important;
    position: relative;
    overflow: hidden;
  }
  .section-icon-grid-slider section .slider-wrapper .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      #92c5ff 20px,
      transparent,
      #92c5ff calc(100% - 20px)
    );
  }
}
.section-icon-grid-slider section h1 {
  padding: 0 20px;
  margin-bottom: 0.74074em;
  color: #1B2D57 !important;
}
.section-icon-grid-slider section .slider-wrapper {
  padding: 2.22222em 0;
}
.section-icon-grid-slider section .slider-wrapper .slick-arrow {
  top: calc(50% - 0.83333em);
  height: 1.66667em;
  width: 1.66667em;
  top: calc(2.77778em - 15px);
}
.section-icon-grid-slider section .slider-wrapper .slick-arrow.slick-prev {
  left: 1.11111em;
}
.section-icon-grid-slider section .slider-wrapper .slick-arrow.slick-next {
  right: 1.11111em;
  transform: rotateY(180deg);
}
.section-icon-grid-slider section .slider-wrapper .slick-arrow.slick-disabled {
  background: var(--color-ciel);
  cursor: not-allowed;
}
.section-icon-grid-slider
  section
  .slider-wrapper
  .slick-arrow.slick-disabled:active,
.section-icon-grid-slider
  section
  .slider-wrapper
  .slick-arrow.slick-disabled:focus,
.section-icon-grid-slider
  section
  .slider-wrapper
  .slick-arrow.slick-disabled:hover {
  background: var(--color-ciel);
}
.section-icon-grid-slider
  section
  .slider-wrapper
  .slick-arrow.slick-disabled:before {
  content: none;
}
.section-icon-grid-slider section .slider-wrapper .slick-arrow:not(.active) {
  display: none;
}
@media only screen and (max-width: 767px) {
  .section-icon-grid-slider section .slider-wrapper .slick-arrow {
    height: 30px;
    width: 30px;
    top: calc(50% - 15px);
  }
  .section-icon-grid-slider section .slider-wrapper .slick-arrow.slick-prev {
    left: 20px;
  }
  .section-icon-grid-slider section .slider-wrapper .slick-arrow.slick-next {
    right: 20px;
  }
}
.section-icon-grid-slider section .slider-wrapper .slick-arrow .icon {
  height: 100%;
  width: 100%;
}
.section-icon-grid-slider section .slider-wrapper .slick-initialized {
  padding: 0 calc((100% - 175px) / 2);
}
.section-icon-grid-slider
  section
  .slider-wrapper
  .slick-initialized
  .slick-list {
  overflow: visible;
}
.section-icon-grid-slider section .icon {
  width: 10.88889em;
}
@media only screen and (min-width: 768px) {
  .section-icon-grid-slider section .icon:not(:last-child) {
    margin-right: 7.61111em;
  }
}
.section-icon-grid-slider section .icon img {
  display: block;
  height: 8.55556em;
  width: 8.55556em;
  margin: auto;
}
.section-icon-grid-slider section .icon h5 {
  font-weight: 700;
  letter-spacing: normal;
}
.section-icon-grid-slider section .pattern {
  color: #92c5ff;
}
.section-icon-grid-slider section .badge {
  position: absolute;
  width: 8.66667em;
  top: 0;
  right: 40px;
  transform: translateY(-50%);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .section-icon-grid-slider section .badge {
    width: 100px;
    right: 10px;
  }
}
.section-newsletter-signup section {
  position: relative;
  padding: 3.61111em;
}
@media only screen and (max-width: 767px) {
  .section-newsletter-signup section {
    padding: 0 20px;
  }
}
.section-newsletter-signup section h4 {
  margin: 0.77778em 0 2.22222em;
}
.section-newsletter-signup section .signup {
  padding: 5.55556em 3.61111em 5.55556em 0;
  width: 65vw;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .section-newsletter-signup section .signup {
    padding-right: 0;
    width: 100%;
  }
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper {
  font-size: 1.5em !important;
}
@media only screen and (max-width: 959px) {
  .section-newsletter-signup
    section
    .signup
    #klaviyo-override.klaviyo-form--wrapper {
    flex-direction: column;
    font-size: 22.5px !important;
  }
}
@media only screen and (max-width: 575px) {
  .section-newsletter-signup
    section
    .signup
    #klaviyo-override.klaviyo-form--wrapper {
    font-size: 18px !important;
  }
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  *,
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  *:before,
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  *:after,
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  *::placeholder {
  box-sizing: border-box;
  color: inherit;
  font-family: var(--font-primary) !important;
  font-size: inherit !important;
}
@media only screen and (min-width: 960px) {
  .section-newsletter-signup
    section
    .signup
    #klaviyo-override.klaviyo-form--wrapper
    .klaviyo-form:not(:last-child) {
    margin-right: 2.22222em;
  }
}
@media only screen and (max-width: 959px) {
  .section-newsletter-signup
    section
    .signup
    #klaviyo-override.klaviyo-form--wrapper
    .klaviyo-form:not(:last-child) {
    margin-bottom: 40px;
  }
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form.klaviyo-form--email
  input {
  width: 11.11111em;
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form.klaviyo-form--email
  button:after {
  background-image: url(/cdn/shop/t/49/assets/icon-email.svg?v=168282883174428592221678992843);
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form.klaviyo-form--phone
  [data-testid="form-component"]
  > div
  > div {
  background: none !important;
  border: none !important;
  height: auto !important;
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form.klaviyo-form--phone
  [data-testid="form-component"]
  > div
  > div
  > button {
  display: none !important;
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form.klaviyo-form--phone
  [data-testid="form-component"]
  > div
  > div
  > div:first-of-type {
  display: none !important;
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form.klaviyo-form--phone
  input {
  width: 7.96296em;
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form.klaviyo-form--phone
  button:after {
  background-image: url(/cdn/shop/t/49/assets/icon-phone.svg?v=148877359447436187181678992843);
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form
  form {
  overflow: visible;
  position: relative;
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form
  form:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: calc(100% - 3.88889em / 2);
  background: var(--color-white);
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form
  form
  .PhoneNumberInputComponents__StyledPhoneInputContainer-sc-13l4vul-2 {
  display: contents !important;
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form
  form
  .PhoneNumberInputComponents__StyledPhoneInputContainer-sc-13l4vul-2
  .PhoneNumberInputComponents__DropdownIcon-sc-13l4vul-1 {
  display: none !important;
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form
  form
  input,
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form
  form
  input::placeholder,
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form
  form
  .RichText__StyledQuillContainer-sc-ohaixb-0 {
  background: none !important;
  border: none !important;
  color: var(--color-white) !important;
  height: auto !important;
  padding: 0.94444em 1.11111em 0.94444em 0 !important;
}
@media only screen and (max-width: 959px) {
  .section-newsletter-signup
    section
    .signup
    #klaviyo-override.klaviyo-form--wrapper
    .klaviyo-form
    form
    input,
  .section-newsletter-signup
    section
    .signup
    #klaviyo-override.klaviyo-form--wrapper
    .klaviyo-form
    form
    input::placeholder,
  .section-newsletter-signup
    section
    .signup
    #klaviyo-override.klaviyo-form--wrapper
    .klaviyo-form
    form
    .RichText__StyledQuillContainer-sc-ohaixb-0 {
    width: auto !important;
  }
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form
  form
  .RichText__StyledQuillContainer-sc-ohaixb-0 {
  width: calc(100% - 3.88889em / 2);
  padding-right: 0 !important;
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form
  form
  .ValidationMessage__ValidationContainerOuter-sc-ja3t6w-2 {
  left: 0;
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form
  form
  .ValidationMessage__ValidationContainerOuter-sc-ja3t6w-2
  > div {
  background: var(--color-white);
  border: none;
  box-shadow: none;
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form
  form
  .ValidationMessage__ValidationContainerOuter-sc-ja3t6w-2
  > div:before,
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form
  form
  .ValidationMessage__ValidationContainerOuter-sc-ja3t6w-2
  > div:after {
  display: none;
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form
  form
  button {
  height: 100%;
  width: 3.88889em;
  background: var(--color-white) !important;
  border-radius: 1.66667em !important;
  box-sizing: border-box !important;
  position: relative;
}
.section-newsletter-signup
  section
  .signup
  #klaviyo-override.klaviyo-form--wrapper
  .klaviyo-form
  form
  button:after {
  content: "";
  height: 1.66667em;
  width: 1.66667em;
  animation: none;
  background: center no-repeat;
  background-size: 100% 100%;
  border-radius: 0;
  margin: auto;
  pointer-events: none;
  position: static;
}
.section-newsletter-signup section img {
  position: absolute;
  bottom: 2.22222em;
  right: 2.22222em;
  width: 17.9em;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .section-newsletter-signup section img {
    width: 120px;
    top: -65px;
    right: 40px;
    transform: rotate(-38deg);
  }
}
.section-review-slider {
  padding: 0 2.22222em 2.22222em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .section-review-slider {
    padding: 20px;
  }
}
.section-review-slider section {
  position: relative;
}
.section-review-slider section li {
  padding: 1.11111em 8.05556em 5.55556em;
}
@media only screen and (max-width: 767px) {
  .section-review-slider section li {
    padding: 0;
  }
}
.section-review-slider section li .review-title {
  margin: 0 0 0.5em;
  min-height: 30px;
}
@media only screen and (max-width: 767px) {
  .section-review-slider section li .review-title {
    width: calc(100% - 120px);
  }
}
.section-review-slider section li .quote {
  margin-bottom: 0.47619em;
}
@media only screen and (max-width: 767px) {
  .section-review-slider section li .quote {
    margin-bottom: 30px;
  }
}
.section-review-slider section li .quote,
.section-review-slider section li .context {
  font-weight: 700;
}
.section-review-slider section li .rating {
  margin-right: 1em;
}
.section-review-slider section li .rating .icon {
  height: auto;
  width: 1.05556em;
}
@media only screen and (max-width: 767px) {
  .section-review-slider section li .rating .icon {
    width: 19px;
  }
}
.section-review-slider section .slick-arrow {
  top: calc(50% - 0.83333em);
  height: 1.66667em;
  width: 1.66667em;
}
.section-review-slider section .slick-arrow.slick-prev {
  left: 0em;
}
.section-review-slider section .slick-arrow.slick-next {
  right: 0em;
  transform: rotateY(180deg);
}
.section-review-slider section .slick-arrow.slick-disabled {
  background: var(--color-ciel);
  cursor: not-allowed;
}
.section-review-slider section .slick-arrow.slick-disabled:active,
.section-review-slider section .slick-arrow.slick-disabled:focus,
.section-review-slider section .slick-arrow.slick-disabled:hover {
  background: var(--color-ciel);
}
.section-review-slider section .slick-arrow.slick-disabled:before {
  content: none;
}
.section-review-slider section .slick-arrow:not(.active) {
  display: none;
}
@media only screen and (max-width: 767px) {
  .section-review-slider section .slick-arrow {
    height: 30px;
    width: 30px;
    top: calc(50% - 15px);
  }
  .section-review-slider section .slick-arrow.slick-prev {
    left: 0;
  }
  .section-review-slider section .slick-arrow.slick-next {
    right: 0;
  }
}
.section-review-slider section .slick-arrow .icon {
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .section-review-slider section .slick-arrow {
    top: 0;
  }
  .section-review-slider section .slick-arrow.slick-prev {
    left: auto;
    right: 65px;
  }
}
.section-image-slider section {
  position: relative;
  padding: 65px 0 100px;
}
.section-image-slider section .heading {
  margin: 0 0 18px;
}
.section-image-slider section ul:not(.slick-initialized) {
  margin: auto;
  width: fit-content;
}
.section-image-slider section ul:not(.slick-initialized) li {
  padding: 0 65px;
}
.section-image-slider section ul img {
  height: 123px;
  min-width: 250px;
  mix-blend-mode: multiply;
}
.page-top,
.shopify-challenge__container,
.shopify-policy__container,
#ReCharge.user-customer {
  padding-top: 5.22222em;
}
main {
  margin-top: -6.16667em;
  position: relative;
}
.btn.slick-arrow,
.btn.slick-next,
.btn.slick-prev {
  min-width: 0;
  padding: 0.38889em 0.55556em;
  position: absolute;
  z-index: 1;
  top: calc(50% - 0.97222em);
  height: 1.94444em;
  width: 1.94444em;
}
@media only screen and (max-width: 767px) {
  .btn.slick-arrow,
  .btn.slick-next,
  .btn.slick-prev {
    padding: 7px 10px;
  }
}
.btn.slick-arrow.slick-prev,
.btn.slick-next.slick-prev,
.btn.slick-prev.slick-prev {
  left: 0em;
}
.btn.slick-arrow.slick-next,
.btn.slick-next.slick-next,
.btn.slick-prev.slick-next {
  right: 0em;
  transform: rotateY(180deg);
}
.btn.slick-arrow.slick-disabled,
.btn.slick-next.slick-disabled,
.btn.slick-prev.slick-disabled {
  background: var(--color-ciel);
  cursor: not-allowed;
}
.btn.slick-arrow.slick-disabled:active,
.btn.slick-arrow.slick-disabled:focus,
.btn.slick-arrow.slick-disabled:hover,
.btn.slick-next.slick-disabled:active,
.btn.slick-next.slick-disabled:focus,
.btn.slick-next.slick-disabled:hover,
.btn.slick-prev.slick-disabled:active,
.btn.slick-prev.slick-disabled:focus,
.btn.slick-prev.slick-disabled:hover {
  background: var(--color-ciel);
}
.btn.slick-arrow.slick-disabled:before,
.btn.slick-next.slick-disabled:before,
.btn.slick-prev.slick-disabled:before {
  content: none;
}
.btn.slick-arrow:not(.active),
.btn.slick-next:not(.active),
.btn.slick-prev:not(.active) {
  display: none;
}
@media only screen and (max-width: 767px) {
  .btn.slick-arrow,
  .btn.slick-next,
  .btn.slick-prev {
    height: 35px;
    width: 35px;
    top: calc(50% - 17.5px);
  }
  .btn.slick-arrow.slick-prev,
  .btn.slick-next.slick-prev,
  .btn.slick-prev.slick-prev {
    left: 0;
  }
  .btn.slick-arrow.slick-next,
  .btn.slick-next.slick-next,
  .btn.slick-prev.slick-next {
    right: 0;
  }
}
.btn.slick-arrow .icon,
.btn.slick-next .icon,
.btn.slick-prev .icon {
  height: 100%;
  width: 100%;
}
.marquee {
  overflow: hidden;
}
.fade-up {
  display: block;
  transition: 0.25s var(--transition-timing);
  transition-property: transform, opacity;
}
.fade-up:active,
.fade-up:focus,
.fade-up:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}
.collection-nav {
  pointer-events: none;
  position: sticky;
  top: calc(100vh - 3.72222em);
  transform: translateY(-1.11111em);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .collection-nav {
    justify-content: flex-end;
    overflow: hidden;
    top: calc(100vh - 87px);
    transform: translateY(-100%);
  }
  .collection-nav > div {
    height: 70px;
    width: 70px;
    margin: 20px;
  }
}
.collection-nav ul {
  background: white;
  border-radius: 2.22222em;
  padding: 0.55556em;
  pointer-events: auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .collection-nav ul {
    background: none;
    border-radius: 0;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: center;
    padding: 10px;
    text-align: center;
  }
}
.collection-nav ul .active-indicator {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: 0.55556em 0;
  background: black;
  border-radius: 2.22222em;
  z-index: 0;
  height: auto;
  width: 0;
  transition: 0.25s var(--transition-timing);
  transition-property: left, width;
}
@media only screen and (max-width: 767px) {
  .collection-nav ul .active-indicator {
    height: 100% !important;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    border-radius: 50%;
    margin: 0;
  }
  .collection-nav ul .active-indicator.active {
    height: 300px;
    width: 300px;
    top: initial;
    left: calc(50% - 150px);
  }
}
.collection-nav ul a {
  z-index: 1;
  color: #fff;
  mix-blend-mode: difference;
}
@media only screen and (max-width: 767px) {
  .collection-nav ul a {
    max-height: 50px;
  }
  .collection-nav ul a:not(.active) {
    max-height: 0px;
    opacity: 0;
  }
}
.collection-nav ul a li {
  color: inherit;
  padding: 0.5em 1.11111em;
}
@media only screen and (max-width: 767px) {
  .collection-nav ul a li {
    padding: 0;
  }
}
.collection-nav ul a li:not(:last-child) {
  margin-right: 1.11111em;
}
.collection-nav ul a li h5 {
  color: inherit;
  font-weight: 900;
  letter-spacing: normal;
}
.product-card-form {
  cursor: default;
  width: 100%;
  flex-shrink: 0;
}
.product-card-form.disabled,
.product-card-form.disabled .product-card-form.product-card-btn,
.product-card-form.sold-out .product-card-form.product-card-btn,
.section-product-panel .product-form.disabled .product-card-form.action-button,
.product-card-form.sold-out {
  pointer-events: none;
}
.product-card-form .product-card--price {
  transition: 0.25s var(--transition-timing);
  transition-property: line-height, opacity;
}
.product-card-form .product-card--price:not(.active) {
  line-height: 0;
  opacity: 0;
  pointer-events: none;
}
.product-card-form .rc_widget:not(.active) {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out, max-height 0.2s ease-out 0.2s;
}
.product-card-form .rc_widget.active {
  max-height: 500px;
  transition: opacity 0.2s ease-out 0.2s, max-height 0.2s ease-out;
}
.product-card-form .rc_widget .rc_widget__option {
  width: 100%;
}
.product-card-form .rc_widget .rc_widget__option:not(:last-child) {
  margin-right: 1.11111em;
}
.product-card-form .rc_widget .rc_widget__option .rc_widget__option__selector {
  height: 100%;
}
.product-card-form
  .rc_widget
  .rc_widget__option
  input.rc_widget__option__input:checked
  + label {
  background: var(--color-black);
  color: var(--color-white);
}
.product-card-form
  .rc_widget
  .rc_widget__option
  label.rc_widget__option__label {
  padding: 0.88889em 1.22222em;
  margin: 0;
  border-radius: 1.11111em;
  background: var(--color-white);
  color: var(--color-black);
  height: 100%;
  width: 100%;
  transition: 0.25s var(--transition-timing);
  transition-property: background, color;
}
.product-card-form
  .rc_widget
  .rc_widget__option
  label.rc_widget__option__label:active,
.product-card-form
  .rc_widget
  .rc_widget__option
  label.rc_widget__option__label:focus,
.product-card-form
  .rc_widget
  .rc_widget__option
  label.rc_widget__option__label:hover {
  background: var(--color-black);
  color: var(--color-white);
}
.product-card-form
  .rc_widget
  .rc_widget__option
  label.rc_widget__option__label:before {
  content: none !important;
}
.product-card-form
  .rc_widget
  .rc_widget__option
  label.rc_widget__option__label:after {
  content: none !important;
}
.product-card-form
  .rc_widget
  .rc_widget__option
  label.rc_widget__option__label
  h5 {
  font-weight: 900;
  margin: 0;
}
.product-card-form
  .rc_widget
  .rc_widget__option
  label.rc_widget__option__label
  p {
  margin: 0;
}
.product-card-form .product-card-shipping {
  font-weight: 900;
}
.product-card-form .product-card-shipping:not(.active) {
  margin: 0;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: margin 0.25s var(--transition-timing) 0.25s,
    max-height 0.25s var(--transition-timing) 0.25s,
    opacity 0.25s var(--transition-timing);
}
.product-card-form .product-card-shipping.active {
  margin: 0.55556em 0 -0.55556em;
  max-height: 1.38889em;
  transition: margin 0.25s var(--transition-timing),
    max-height 0.25s var(--transition-timing),
    opacity 0.25s var(--transition-timing) 0.25s;
}
.product-card-form .rc_widget__option__plans {
  background: var(--color-white);
  border-radius: 1.11111em;
  margin: 0;
  max-height: 0px;
  pointer-events: none;
  transform: rotateX(90deg);
  transition: transform 0.2s ease-out, margin 0.2s ease-out 0.2s,
    max-height 0.2s ease-out 0.2s;
}
.product-card-form .rc_widget__option__plans.active {
  margin: 1.11111em 0 0;
  max-height: 7.22222em;
  transform: none;
  pointer-events: auto;
  transition: transform 0.2s ease-out 0.2s, margin 0.2s ease-out,
    max-height 0.2s ease-out;
}
.product-card-form .rc_widget__option__plans .product-card-plans-trigger {
  cursor: pointer;
  padding: 0.61111em 1em;
}
.product-card-form
  .rc_widget__option__plans
  .product-card-plans-trigger.active
  .icon-chevron {
  transform: rotate(90deg) rotateY(0);
}
.product-card-form .rc_widget__option__plans .product-card-plans-trigger h5 {
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0.83333em 0 0;
}
.product-card-form
  .rc_widget__option__plans
  .product-card-plans-trigger
  h5
  span {
  font-weight: 900;
  white-space: nowrap;
}
.product-card-form
  .rc_widget__option__plans
  .product-card-plans-trigger
  .icon-chevron {
  transform: rotate(90deg) rotateY(180deg);
  transition: transform 0.25s var(--transition-timing);
}
.product-card-form .rc_widget__option__plans .product-card-plans {
  margin: -0.27778em 0;
  max-height: 0;
  opacity: 0;
  padding: 0 1em 0.61111em;
  pointer-events: none;
  transition: opacity 0.2s ease-out, margin 0.2s ease-out,
    max-height 0.2s ease-out;
}
.product-card-form .rc_widget__option__plans .product-card-plans.active {
  margin: 0;
  max-height: 2.5em;
  opacity: 1;
  pointer-events: auto;
}
.product-card-form
  .rc_widget__option__plans
  .product-card-plans
  input:checked
  + label.product-card-plan {
  background: var(--color-black);
  color: var(--color-white);
}
.product-card-form
  .rc_widget__option__plans
  .product-card-plans
  label.product-card-plan {
  border-radius: 1.11111em;
  color: var(--color-black);
  font-size: 0.77778em;
  padding: 0.44444em 0.55556em;
  margin: 0;
  transition: 0.25s var(--transition-timing);
  transition-property: background, color;
  white-space: nowrap;
}
.product-card-form
  .rc_widget__option__plans
  .product-card-plans
  label.product-card-plan:before {
  content: none;
}
.product-card-form
  .rc_widget__option__plans
  .product-card-plans
  label.product-card-plan:after {
  content: none;
}
.product-card-form .product-card-btn {
  margin-top: 1.11111em;
}
.section-product-faqs section {
  padding: 65px 40px;
  position: relative;
}
.section-product-faqs section h3 {
  margin: 0 0 40px;
}
.section-product-faqs section ul {
  display: grid;
  grid-gap: 40px;
}
@media only screen and (max-width: 767px) {
  .section-product-faqs section ul {
    grid-template-columns: 1fr !important;
  }
}
.section-product-faqs section ul h4 {
  margin: 0 0 11px;
}
.section-product-faqs section ul p {
  margin: 0;
}
.section-product-faqs section .btn {
  display: block;
  margin: 60px auto 0;
  width: min-content;
}
.section-product-reviews section {
  padding: 3.61111em 2.22222em;
}
@media only screen and (max-width: 767px) {
  .section-product-reviews section {
    padding: 65px 35px;
  }
}
.section-product-reviews section .slider-wrapper {
  position: relative;
}
.section-product-reviews section .custom-reviews {
  margin: 2.22222em 0;
}
.section-product-reviews section .custom-reviews li {
  border-radius: 1.11111em;
  margin: 0 0.55556em;
  padding: 2.22222em;
}
.section-product-reviews section .custom-reviews li .large {
  display: inline;
  font-weight: 900;
}
.section-product-reviews section .custom-reviews li .body {
  display: inline;
}
.section-product-reviews section .custom-reviews li .small {
  margin: 0.83333em 0 0;
}
.section-product-reviews section .slick-arrow {
  top: calc(50% - 0.83333em);
  height: 1.66667em;
  width: 1.66667em;
}
.section-product-reviews section .slick-arrow.slick-prev {
  left: -1.66667em;
}
.section-product-reviews section .slick-arrow.slick-next {
  right: -1.66667em;
  transform: rotateY(180deg);
}
.section-product-reviews section .slick-arrow.slick-disabled {
  background: var(--color-ciel);
  cursor: not-allowed;
}
.section-product-reviews section .slick-arrow.slick-disabled:active,
.section-product-reviews section .slick-arrow.slick-disabled:focus,
.section-product-reviews section .slick-arrow.slick-disabled:hover {
  background: var(--color-ciel);
}
.section-product-reviews section .slick-arrow.slick-disabled:before {
  content: none;
}
.section-product-reviews section .slick-arrow:not(.active) {
  display: none;
}
@media only screen and (max-width: 767px) {
  .section-product-reviews section .slick-arrow {
    height: 30px;
    width: 30px;
    top: calc(50% - 15px);
  }
  .section-product-reviews section .slick-arrow.slick-prev {
    left: -30px;
  }
  .section-product-reviews section .slick-arrow.slick-next {
    right: -30px;
  }
}
.section-product-reviews section .slick-arrow .icon {
  height: 100%;
  width: 100%;
}
#shopify-product-reviews.reviews-wrapper {
  margin: auto;
  max-width: 700px;
}
#shopify-product-reviews.reviews-wrapper .spr-container {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}
#shopify-product-reviews.reviews-wrapper .spr-container .spr-header {
  display: flex;
  justify-content: center;
  order: 1;
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-header
  .spr-header-title,
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-header
  .spr-starrating,
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-header
  .spr-summary-caption {
  display: none;
}
#shopify-product-reviews.reviews-wrapper .spr-container .spr-content {
  transition: 0.5s var(--transition-timing);
  transition-property: max-height, opacity, padding;
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-content:not(.active) {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
#shopify-product-reviews.reviews-wrapper .spr-container .spr-content.active {
  max-height: 3000px;
  padding-bottom: 40px;
}
#shopify-product-reviews.reviews-wrapper .spr-container .spr-content .spr-form {
  display: initial !important;
  position: fixed;
  bottom: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 4;
  transition: opacity 0.25s var(--transition-timing);
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-content
  .spr-form:not(.active) {
  opacity: 0;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  #shopify-product-reviews.reviews-wrapper
    .spr-container
    .spr-content
    .spr-form {
    padding: 0;
  }
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-content
  .spr-form:not(.active)
  > form {
  clip-path: circle(0% at 50% 50%);
  -webkit-clip-path: circle(0% at 50% 50%);
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-content
  .spr-form.active
  > form {
  clip-path: circle(100% at 50% 50%);
  -webkit-clip-path: circle(100% at 50% 50%);
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-content
  .spr-form
  form {
  background: var(--color-off-white);
  border-radius: 1.66667em;
  height: 100%;
  margin: auto;
  max-width: 38.88889em;
  overflow: scroll;
  padding: 1.11111em;
  position: relative;
  transition: 0.5s var(--transition-timing) 0.25s;
  transition-property: clip-path, -webkit-clip-path;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-content
  .spr-form
  form::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 767px) {
  #shopify-product-reviews.reviews-wrapper
    .spr-container
    .spr-content
    .spr-form
    form {
    border-radius: 0;
  }
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-content
  .spr-form
  form
  .spr-button-close {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 20px;
  width: 20px;
  min-width: 0px;
  padding: 0;
}
#shopify-product-reviews.reviews-wrapper .spr-container .spr-reviews {
  margin: 0;
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-reviews
  .spr-review {
  border: none;
  margin: 0;
  padding: 40px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #shopify-product-reviews.reviews-wrapper
    .spr-container
    .spr-reviews
    .spr-review {
    padding: 40px 0;
  }
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-reviews
  .spr-review
  .spr-review-header-byline {
  position: absolute;
  bottom: 40px;
  left: 40px;
  margin: 0;
  width: auto;
  font-size: 15px;
  line-height: 156%;
}
@media only screen and (max-width: 767px) {
  #shopify-product-reviews.reviews-wrapper
    .spr-container
    .spr-reviews
    .spr-review
    .spr-review-header-byline {
    margin-bottom: 1.56em;
    left: 0;
  }
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-reviews
  .spr-review
  .spr-review-header-byline
  strong {
  font-style: normal;
  font-weight: 400;
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-reviews
  .spr-review
  .spr-review-content {
  margin-bottom: 15px;
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-reviews
  .spr-review
  .spr-review-content
  .spr-review-header-title {
  display: inline;
  font-size: 1.2em;
  line-height: 1.25;
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-reviews
  .spr-review
  .spr-review-content
  .spr-review-content-body {
  display: inline;
  font-size: 18px;
  line-height: 1.4;
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-reviews
  .spr-review
  .spr-review-reportreview {
  font-size: 15px;
  line-height: 156%;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #shopify-product-reviews.reviews-wrapper
    .spr-container
    .spr-reviews
    .spr-review
    .spr-review-reportreview {
    display: block;
    float: none;
    margin-top: 2em;
  }
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-reviews
  .spr-pagination-page {
  height: 1.16667em;
  width: 1.16667em;
  border-radius: 100%;
  font-weight: 500;
  font-size: 15px;
  line-height: 133%;
}
#shopify-product-reviews.reviews-wrapper
  .spr-container
  .spr-reviews
  .spr-pagination-page.is-active {
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 400;
}
.spr-icon {
  color: #ffb902 !important;
  margin-right: 9px;
}
@media only screen and (max-width: 959px) {
  .section-product-dosage section {
    flex-direction: column;
  }
}
.section-product-dosage section .content,
.section-product-dosage section .img-wrapper {
  width: 100%;
}
.section-product-dosage section > .content {
  display: grid;
  grid-template-columns: 1fr 11.11111em;
  grid-gap: 2.22222em;
  padding: 5.55556em 3.61111em;
}
@media only screen and (max-width: 1049px) {
  .section-product-dosage section > .content {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 959px) {
  .section-product-dosage section > .content {
    display: grid;
    grid-template-columns: 1fr 11.11111em;
  }
}
@media only screen and (max-width: 767px) {
  .section-product-dosage section > .content {
    padding: 65px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .section-product-dosage section > .content {
    display: flex;
    flex-direction: column-reverse;
  }
}
.section-product-dosage section > .content .content-wrapper {
  margin-right: 2.22222em;
}
@media only screen and (min-width: 960px) and (max-width: 1049px) {
  .section-product-dosage section > .content .content-wrapper {
    margin: 2.22222em 0 0;
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .section-product-dosage section > .content .content-wrapper {
    margin: 2.22222em 0 0;
    text-align: center;
  }
}
.section-product-dosage section > .content .content-wrapper .h2 {
  margin: 0 0 0.55556em;
}
.section-product-dosage section > .content .content-wrapper p {
  margin: 0;
}
.section-product-dosage section .img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.dosage-selector {
  border-radius: 2.77778em;
  max-width: 100%;
  padding: 0 1.11111em;
  width: 11.11111em;
}
.dosage-selector .dosage--content:not(.active) {
  display: none;
}
.dosage-selector .dosage--content .img-wrapper {
  margin-top: -1.66667em;
}
.dosage-selector .dosage--content .small {
  margin: 0 0 0.4375em;
  line-height: 1.4;
}
.dosage-selector .dosage--content .large {
  margin: 0 0 0.77315em;
  font-weight: 700;
}
.dosage-selector .dosage--wrapper {
  margin-bottom: -1em;
  width: 100%;
}
.dosage-selector .dosage--wrapper .dosage--selector {
  background-color: #ffffff;
  border-radius: 1.66667em;
  color: #1B2D57;
  font-size: 0.88889em;
  height: 2em;
  width: 2em;
}
.dosage-selector .dosage--wrapper .dosage--selector.active {
  background-color: #1B2D57;
  color: #ffffff;
}
.img-wrapper {
  line-height: 0;
}
.section-product-details section {
  padding: 3.61111em 0;
  margin-top: 4.16667em;
}
@media only screen and (max-width: 767px) {
  .section-product-details section {
    padding: 35px 20px 65px;
    margin: 0;
  }
}
.section-product-details section .overview {
  max-width: 61.88889em;
  padding: 4.22222em 6.55556em;
  border-radius: 1.66667em;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .section-product-details section .overview {
    padding: 40px 20px;
  }
}
.section-product-details section .overview .h1 {
  margin: 0 0 0.44444em;
}
.section-product-details section .overview .large {
  margin: 0;
}
.section-product-details section .overview ul {
  padding: 2.22222em 0;
}
@media only screen and (max-width: 767px) {
  .section-product-details section .overview ul {
    flex-direction: column;
    padding: 20px 0;
  }
}
.section-product-details section .overview ul li:not(:last-child) {
  margin-right: 2.22222em;
}
@media only screen and (max-width: 767px) {
  .section-product-details section .overview ul li:not(:last-child) {
    margin: 0 0 30px;
  }
}
.section-product-details section .overview ul li img {
  height: 6.66667em;
  width: 6.66667em;
  margin-right: 1.11111em;
}
.section-product-details section .overview ul li .large {
  font-weight: 900;
}
.section-product-details section .details {
  max-width: 63.88889em;
  margin: 3.61111em auto 0;
  padding: 0 3.88889em;
}
@media only screen and (max-width: 767px) {
  .section-product-details section .details {
    flex-direction: column;
    padding: 0 20px;
  }
}
.section-product-details section .details .heading {
  margin-right: 3.61111em;
  min-width: 13.88889em;
}
.section-product-details section .details .heading button {
  background: transparent;
  border-radius: 0;
  font-size: 1em;
  margin-top: 1em;
}
.section-product-details section .details .heading button:before {
  display: none;
}
.section-product-details section .details .heading button:focus,
.section-product-details section .details .heading button:hover {
  color: initial;
}
.section-product-details section .details .heading button .icon {
  margin-left: 0.27778em;
}
@media only screen and (max-width: 767px) {
  .section-product-details section .details .ingredients-nutrition {
    flex-direction: column;
  }
}
.section-product-details section .details .ingredients {
  width: 100%;
  padding-right: 1.66667em;
  border-right: 1px solid #92c5ff;
}
@media only screen and (max-width: 767px) {
  .section-product-details section .details .ingredients {
    padding: 20px 0;
    border: none;
    border-bottom: 1px solid #92c5ff;
  }
}
.section-product-details section .details .nutrition {
  width: 100%;
  padding-left: 1.66667em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .section-product-details section .details .nutrition {
    padding: 20px 0;
  }
}
.section-product-details section .details .nutrition > div {
  line-height: 1.4;
}
.section-product-details section .details .nutrition > div:not(:last-child) {
  margin-bottom: 1.27778em;
}
.section-product-details .nutrition-popup--screen {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 3.33333em;
  cursor: zoom-out;
  transition: 0.5s ease-out 0.3s;
  transition-property: backdrop-filter, -webkit-backdrop-filter,
    background-color;
}
@media only screen and (max-width: 767px) {
  .section-product-details .nutrition-popup--screen {
    padding: 0;
  }
}
.section-product-details .nutrition-popup--screen:not(.active) {
  pointer-events: none;
}
.section-product-details .nutrition-popup--screen.active {
  background-color: #0003;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition-delay: 0s;
}
.section-product-details .nutrition-popup--screen.active .nutrition-popup {
  transform: none;
  transition-delay: 0.3s;
}
.section-product-details .nutrition-popup--screen .nutrition-popup {
  border-radius: 1.66667em;
  cursor: default;
  padding: 3.33333em 2.5em 2.5em 3.33333em;
  position: relative;
  transform: scaleY(0);
  transition: transform 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  .section-product-details .nutrition-popup--screen .nutrition-popup {
    border-radius: 0;
    height: 100%;
    padding: 3.61111em 0.83333em 0.83333em 1.66667em;
  }
}
.section-product-details
  .nutrition-popup--screen
  .nutrition-popup
  .nutrition-popup--wrapper {
  height: 100%;
  max-height: calc(100vh - 12.5em);
  overflow: scroll;
  padding-right: 0.83333em;
}
@media only screen and (max-width: 767px) {
  .section-product-details
    .nutrition-popup--screen
    .nutrition-popup
    .nutrition-popup--wrapper {
    flex-direction: column;
    max-height: calc(100vh - 4.44444em);
  }
}
.section-product-details .nutrition-popup--screen .nutrition-popup .close {
  position: absolute;
  top: 1.38889em;
  right: 1.38889em;
  height: 1.33333em;
  width: 1.33333em;
  padding: 0.27778em;
  background: 0;
}
@media only screen and (max-width: 767px) {
  .section-product-details .nutrition-popup--screen .nutrition-popup .close {
    top: 20px;
    right: 20px;
  }
}
.section-product-details .nutrition-popup--screen .nutrition-popup .close:focus,
.section-product-details
  .nutrition-popup--screen
  .nutrition-popup
  .close:hover {
  color: inherit;
}
.section-product-details
  .nutrition-popup--screen
  .nutrition-popup
  .close:before {
  display: none;
}
.section-product-details
  .nutrition-popup--screen
  .nutrition-popup
  .close
  .icon {
  height: 100%;
  width: 100%;
}
.section-product-details
  .nutrition-popup--screen
  .nutrition-popup
  .ingredients {
  width: 18.33333em;
  margin-right: 2.22222em;
}
@media only screen and (max-width: 767px) {
  .section-product-details
    .nutrition-popup--screen
    .nutrition-popup
    .ingredients {
    width: 100%;
    margin: 0 0 20px;
  }
}
.section-product-details
  .nutrition-popup--screen
  .nutrition-popup
  .ingredients
  .h4 {
  margin: 0 0 1.11111em;
}
.section-product-details .nutrition-popup--screen .nutrition-popup .label {
  width: 15.55556em;
}
@media only screen and (max-width: 767px) {
  .section-product-details .nutrition-popup--screen .nutrition-popup .label {
    width: 100%;
  }
}
.section-product-details .nutrition-popup--screen .nutrition-popup .label p {
  margin-bottom: 0.55556em !important;
}
.section-product-details
  .nutrition-popup--screen
  .nutrition-popup
  .label
  table {
  border-collapse: collapse;
  border-top: 0.16667em solid var(--color-black) !important;
  border-bottom: 0.16667em solid var(--color-black) !important;
  font-size: inherit !important;
  font-family: inherit !important;
}
.section-product-details
  .nutrition-popup--screen
  .nutrition-popup
  .label
  table
  tr {
  border: solid;
  border-width: 0.05556em 0;
}
.section-product-details
  .nutrition-popup--screen
  .nutrition-popup
  .label
  table
  th {
  white-space: nowrap;
}
.section-product-details
  .nutrition-popup--screen
  .nutrition-popup
  .label
  table
  th
  div {
  white-space: break-spaces;
}
.section-product-details
  .nutrition-popup--screen
  .nutrition-popup
  .label
  table
  th,
.section-product-details
  .nutrition-popup--screen
  .nutrition-popup
  .label
  table
  td {
  background: none !important;
  border: none !important;
  width: auto !important;
}
.section-product-details
  .nutrition-popup--screen
  .nutrition-popup
  .label
  table
  td:nth-child(2) {
  padding: 0 0.55556em !important;
}
.rainbow {
  position: absolute;
  z-index: -1;
}
.section-product-icons section {
  padding: 0 0 6.94444em;
}
@media only screen and (max-width: 767px) {
  .section-product-icons section {
    padding: 65px 0 100px;
  }
}
.section-product-icons section li {
  /* padding: 0 1.80556em; */
  width: 16.5em;
}
@media only screen and (max-width: 767px) {
  .section-product-icons section li {
    padding: 25px 20px;
    width: 170px;
  }
}
.section-product-icons section li img {
  height: 5.66667em;
  width: 5.66667em;
}
@media only screen and (max-width: 767px) {
  .section-product-icons section li img {
    height: 80px;
    width: 80px;
  }
}
.section-product-icons section li .h5 {
  margin: 1.11111em 0 0;
}
.no-overflow {
  overflow: hidden;
}
.section-product-panel section {
  display: grid;
  grid-template-columns: 29% 1fr 34%;
  padding: 8.88889em 5.55556em;
}
@media only screen and (min-width: 768px) {
  .section-product-panel section.onetime-only {
    grid-template-columns: 1fr 1fr;
  }
}
.section-product-panel section.onetime-only .media-wrapper {
  display: flex;
  justify-content: center;
}
.section-product-panel section.onetime-only .media-wrapper img {
  max-width: 22.22222em;
}
.section-product-panel section.onetime-only .tablet-columns {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1049px) {
  .section-product-panel section {
    padding: 8.88889em 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .section-product-panel section {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .section-product-panel section {
    display: block;
    padding: 80px 20px;
  }
}
.section-product-panel section .details,
.section-product-panel section .img-wrapper,
.section-product-panel section .product-form {
  width: auto;
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .section-product-panel section > .img-wrapper {
    order: 1;
  }
}
.section-product-panel section > .img-wrapper img {
  mix-blend-mode: darken;
}
.section-product-panel section .tablet-columns {
  display: contents;
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .section-product-panel section .tablet-columns {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .section-product-panel section .details {
    order: -1;
  }
}
.section-product-panel section .details .h1 {
  margin: 0 0 20px;
}
@media only screen and (max-width: 767px) {
  .section-product-panel section .details .h1 {
    font-size: 2.5em;
  }
}
.section-product-panel section .details .dosage-variant,
.section-product-panel section .details .flavor-variant {
  background: var(--color-white);
  color: var(--color-black);
  display: inline-block;
  font-weight: 900;
  margin: 0;
  padding: 9px 22px;
  transition: 0.25s var(--transition-timing);
  transition-property: background, color, opacity;
}
.section-product-panel section .details .dosage-variant:focus,
.section-product-panel section .details .dosage-variant:hover,
.section-product-panel section .details .dosage-variant.active,
.section-product-panel section .details .flavor-variant:focus,
.section-product-panel section .details .flavor-variant:hover,
.section-product-panel section .details .flavor-variant.active {
  background: var(--color-black);
  color: var(--color-white);
}
.section-product-panel section .details .dosage-wrapper {
  margin: 20px 0;
}
.section-product-panel section .details .dosage-variant {
  border-radius: 1.66667em;
}
.section-product-panel section .details .dosage-variant:not(:last-child) {
  margin-right: 1.22222em;
}
.section-product-panel section .details .flavor-variant {
  background: var(--color-white);
  border-radius: 1.66667em;
  color: var(--color-black);
  padding: 0.5em 1.22222em;
}
.section-product-panel section .details .flavor-variant.variant-start {
  border-radius: 1.66667em 0 0 1.66667em;
}
.section-product-panel section .details .flavor-variant.variant-middle {
  border-radius: 0;
}
.section-product-panel section .details .flavor-variant.variant-end {
  border-radius: 0 1.66667em 1.66667em 0;
}
.section-product-panel section .details .description-preview,
.section-product-panel section .details .description-total {
  margin: 20px 0 0;
}
.section-product-panel section .mobile-details .hr {
  height: 1px;
  width: 100%;
  margin: 30px 0;
}
.section-product-panel section .mobile-details .description-preview,
.section-product-panel section .mobile-details .description-total {
  margin: 0;
}
.section-product-panel section .description.active .description-preview {
  display: none;
}
.section-product-panel section .description:not(.active) .description-total {
  display: none;
}
.section-product-panel .product-form.disabled .action-button,
.section-product-panel
  .product-card-form.disabled
  .product-form.product-card-btn
  .action-button,
.product-card-form.disabled
  .section-product-panel
  .product-form.product-card-btn
  .action-button,
.section-product-panel
  .product-card-form.sold-out
  .product-form.product-card-btn
  .action-button,
.product-card-form.sold-out
  .section-product-panel
  .product-form.product-card-btn
  .action-button {
  pointer-events: none;
}
.section-product-panel .product-form label:before,
.section-product-panel .product-form label:after {
  content: none;
}
.section-product-panel .product-form .purchase-options--wrapper {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2.22222em;
  width: 100%;
}
.section-product-panel
  .product-form
  .purchase-options--wrapper
  .purchase-option--input:checked
  + .purchase-option--label {
  background: var(--color-black);
  color: var(--color-white);
}
.section-product-panel
  .product-form
  .purchase-options--wrapper
  .purchase-option--label {
  background: var(--color-white);
  border-radius: 1.11111em;
  color: var(--color-black);
  padding: 0.88889em 1.11111em;
  transition: 0.25s var(--transition-timing);
  transition-property: background, color;
}
.section-product-panel
  .product-form
  .purchase-options--wrapper
  .purchase-option--label,
.section-product-panel
  .product-form
  .purchase-options--wrapper
  .purchase-option--label
  * {
  margin: 0;
}
.section-product-panel
  .product-form
  .purchase-options--wrapper
  .purchase-option--label
  .price {
  font-weight: 900;
}
.section-product-panel .product-form .frequency--wrapper {
  background: var(--color-white);
  border-radius: 1.66667em;
  transition: 0.25s var(--transition-timing);
  transition-property: margin, max-height, opacity;
}
.section-product-panel .product-form .frequency--wrapper.active {
  margin-bottom: 2.22222em;
  max-height: 6.66667em;
}
.section-product-panel .product-form .frequency--wrapper:not(.active) {
  margin: 0;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.section-product-panel .product-form .frequency--wrapper .frequency--trigger {
  background: transparent;
  color: var(--color-black);
  font-weight: 700;
  margin: 0;
  padding: 0.61111em 1em;
  width: 100%;
}
.section-product-panel
  .product-form
  .frequency--wrapper
  .frequency--trigger:before {
  content: none;
}
.section-product-panel
  .product-form
  .frequency--wrapper
  .frequency--trigger
  span {
  font-weight: 900;
}
.section-product-panel
  .product-form
  .frequency--wrapper
  .frequency--trigger
  .icon {
  margin-left: auto;
  transform: rotate(270deg);
}
.section-product-panel .product-form .frequency--wrapper .frequencies {
  transition: 0.25s var(--transition-timing);
  transition-property: max-height, opacity, padding;
}
.section-product-panel .product-form .frequency--wrapper .frequencies.active {
  max-height: 3.33333em;
  padding: 0.61111em 1em;
}
.section-product-panel
  .product-form
  .frequency--wrapper
  .frequencies:not(.active) {
  max-height: 0;
  opacity: 0;
  padding: 0 1em;
  pointer-events: none;
}
.section-product-panel
  .product-form
  .frequency--wrapper
  .frequencies
  .frequency--input:checked
  + .frequency--label {
  background: var(--color-black);
  color: var(--color-white);
}
.section-product-panel
  .product-form
  .frequency--wrapper
  .frequencies
  .frequency--label {
  border-radius: 1.66667em;
  color: var(--color-black);
  margin: 0;
  padding: 0.27778em 0.44444em;
  transition: 0.25s;
  transition-delay: background, color;
}
.section-product-panel .product-form .qty-box {
  margin-right: 1.11111em;
  padding: 0.61111em 1em;
}
.section-product-panel .product-form .qty-box .btn-transparent {
  height: min-content;
  padding: 0.38889em;
}
.section-product-panel .product-form .qty-box .btn-transparent .icon {
  height: 0.88889em;
  width: 0.88889em;
}
.section-product-panel .product-form .qty-box input {
  font-size: 1.22222em;
  width: 1.625em;
  padding: 0;
}
.section-store-locator section {
  max-width: 55.55556em;
  margin: auto;
  padding-left: 1.11111em;
  padding-right: 1.11111em;
}
.section-store-locator section .heading {
  margin: 1.48148em 0 1.2037em;
}
@media only screen and (max-width: 767px) {
  .section-store-locator section .heading {
    margin: 40px 0;
  }
}
.section-store-locator section iframe {
  background: var(--color-beige);
  border-radius: 1.66667em;
}
.section-store-locator section .partners-heading {
  margin-top: 1.85185em;
}
@media only screen and (max-width: 767px) {
  .section-store-locator section .partners-heading {
    margin: 40px 0 20px;
  }
}
.section-store-locator section ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 1.11111em;
  margin-bottom: 10.27778em;
}
@media only screen and (max-width: 767px) {
  .section-store-locator section ul {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 575px) {
  .section-store-locator section ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-store-locator section ul .img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.section-store-locator section ul .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.shopify-challenge__container,
.shopify-policy__container {
  max-width: 41.66667em;
}
.shopify-challenge__container .shopify-policy__title,
.shopify-policy__container .shopify-policy__title {
  margin-top: 4.44444em;
}
.section-secondary-page {
  padding-bottom: 7.22222em;
}
.section-secondary-page img {
  padding: 3em 0;
}
.section-login .heading {
  margin-top: 80px;
}
.section-account header {
  padding-left: 20px;
  padding-right: 20px;
}
.section-account header .heading {
  margin: 80px 0 0;
}
.section-account header .h5 {
  margin: 5px 0 0;
}
.section-account .account--nav {
  padding: 40px 0;
}
.section-account .account--nav li.active a {
  background: var(--color-white);
}
.section-account .account--nav li:not(:last-child) {
  margin-right: 20px;
}
.section-account .account--nav li a {
  background: transparent;
  border-radius: 1.66667em;
  color: var(--color-black);
  display: block;
  padding: 5px 10px;
}
.section-account .account--nav li a:focus,
.section-account .account--nav li a:hover {
  background: var(--color-white);
}
.section-account .account-page {
  padding-bottom: 45px;
}
.section-account .account-page .heading {
  margin-bottom: 40px;
}
.section-account .account--history .account--order {
  background: var(--color-white);
  border-radius: 1.66667em;
  margin: auto;
  max-width: 38.88889em;
  padding: 2.22222em;
}
.section-account .account--history .account--order:not(:last-child) {
  margin-bottom: 2.22222em;
}
@media only screen and (max-width: 767px) {
  .section-account .account--history .account--order {
    padding: 20px;
  }
}
.section-account .account--history .account--order .account--order-header {
  margin-bottom: 2.22222em;
}
.section-account
  .account--history
  .account--order
  .account--order-header
  .account--order-date {
  margin: 0 0.66667em 0 0;
}
.section-account .account--history .account--order .account--item {
  border-bottom: 0.05556em solid var(--color-off-white);
  margin-bottom: 1.11111em;
  padding-bottom: 1.11111em;
}
.section-account .account--history .account--order .account--item > div {
  padding: 0.27778em 0;
}
.section-account
  .account--history
  .account--order
  .account--item
  .account--item-left {
  display: block;
  width: 4.44444em;
}
.section-account
  .account--history
  .account--order
  .account--item
  .account--item-title {
  margin: 0 0 0.38889em;
}
.section-account
  .account--history
  .account--order
  .account--item
  .account--item-bottle-count {
  display: block;
  font-size: 0.77778em;
  letter-spacing: 0.055em;
  line-height: normal;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .section-account .account--history .account--order .account--order-footer {
    display: unset;
  }
}
.section-account
  .account--history
  .account--order
  .account--order-footer
  address {
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .section-account
    .account--history
    .account--order
    .account--order-footer
    address {
    margin-bottom: 20px;
  }
}
.section-account
  .account--history
  .account--order
  .account--order-footer
  address
  .account--address-name {
  margin: 0 0 0.88889em;
}
.section-account
  .account--history
  .account--order
  .account--order-footer
  .account--order-totals {
  text-transform: uppercase;
}
.section-account
  .account--history
  .account--order
  .account--order-footer
  .account--order-totals
  > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5.55556em;
}
.section-account
  .account--history
  .account--order
  .account--order-footer
  .account--order-totals
  > div:not(:last-child) {
  margin-bottom: 0.88889em;
}
.section-account .account--settings form {
  margin: 0;
}
.section-404 .rainbow {
  position: absolute;
  top: 0;
  left: 0;
  width: 16.66667em;
  max-width: 40%;
  z-index: -1;
}
.section-404 .title {
  font-size: 7em;
  margin: 0.63492em 0 0;
  opacity: 0.1;
}
@media only screen and (max-width: 575px) {
  .section-404 .btn-wrapper .btn {
    min-width: 0;
    height: 50px;
    width: 50px;
  }
}
.section-404 .btn-wrapper .btn:not(:last-child) {
  margin-right: 1em;
}
.section-404 .btn-wrapper .btn .icon {
  height: 1.5em;
  width: auto;
  overflow: visible;
}
@media only screen and (min-width: 576px) {
  .section-404 .btn-wrapper .btn .icon {
    height: 1em;
    margin-right: 0.5em;
  }
}
@media only screen and (max-width: 575px) {
  .section-404 .btn-wrapper .btn .label {
    display: none;
  }
}
.btn-small {
  font-size: 0.88889em;
  padding: 0.3125em;
}
.section-search .search--form {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 1.11111em;
  border: 1px solid transparent;
  border-radius: 3.33333em;
  margin: 4.44444em 0 3.61111em;
  padding: 1.11111em;
  transition: border-color 0.25s var(--transition-timing);
}
.section-search .search--form.active {
  border-color: var(--color-canteloupe);
}
.section-search .search--form .icon-search {
  width: 1.33333em;
}
.section-search .search--form input {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}
.section-search .search--form input::placeholder {
  opacity: 0.3;
}
.section-search .search--form button {
  background: transparent;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
.section-search .search--form button:before {
  content: none;
}
.section-search .search--form button:focus,
.section-search .search--form button:hover {
  background: none;
  color: var(--color-cherry);
}
.section-search .search--results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3.61111em;
}
@media only screen and (max-width: 767px) {
  .section-search .search--results {
    grid-template-columns: 1fr;
  }
}
.section-search .search--results .result-wrapper {
  padding: 0 calc(4.16667em / 2);
}
.section-subscribe-hero {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .section-subscribe-hero .img-wrapper {
    justify-content: flex-end;
  }
}
.section-subscribe-hero .img-wrapper img {
  height: 26.66667em;
  width: auto;
}
.section-subscribe-hero .img-wrapper img:first-child {
  transform: rotateY(180deg);
}
@media only screen and (max-width: 767px) {
  .section-subscribe-hero .img-wrapper img:first-child {
    display: none;
  }
}
.section-subscribe-hero .content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.section-subscribe-hero .content .heading {
  font-size: 5.55556em;
}
.section-subscribe-details section {
  padding-bottom: 3.61111em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .section-subscribe-details section {
    padding: 0;
  }
}
.section-subscribe-details section .rainbow {
  position: absolute;
  left: 0;
  width: 11.11111em;
  z-index: -1;
}
.section-subscribe-details section .content {
  margin: auto;
  padding: 3.61111em 5.55556em;
  width: 100%;
  max-width: 40.27778em;
}
@media only screen and (max-width: 767px) {
  .section-subscribe-details section .content {
    padding: 65px 20px;
  }
}
.section-subscribe-details section .content .h1,
.section-subscribe-details section .content .h5 {
  margin: 0;
}
.section-subscribe-details section .content .h1 {
  margin-bottom: 0.2em;
}
.section-subscribe-details section .icons {
  display: grid;
  grid-gap: 5.55556em;
  grid-template-columns: repeat(3, 1fr);
  margin: auto;
  max-width: 52.77778em;
  padding: 0 1.11111em;
}
@media only screen and (max-width: 767px) {
  .section-subscribe-details section .icons {
    grid-gap: 20px;
  }
}
.section-subscribe-details section .icons .icon img {
  height: 7.22222em;
  width: 7.22222em;
}
@media only screen and (max-width: 767px) {
  .section-subscribe-details section .icons .icon img {
    height: 70px;
    width: 70px;
  }
}
.section-subscribe-details section .icons .icon .h5 {
  margin: 0.9em 0 0;
}
@media only screen and (max-width: 767px) {
  .section-subscribe-details section .icons .icon .h5 {
    font-size: 0.83333em;
    font-weight: 500;
    line-height: 156%;
  }
}
.section-subscribe-grid .collection-card {
  padding: 3.61111em;
  position: relative;
}
@media only screen and (min-width: 960px) and (max-width: 1049px) {
  .section-subscribe-grid .collection-card {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .section-subscribe-grid .collection-card {
    padding: 65px 25px;
  }
}
.section-subscribe-grid .collection-card .rainbow {
  bottom: 0;
  right: 0;
  width: 13.88889em;
}
.section-subscribe-grid .collection-card .heading,
.section-subscribe-grid .collection-card .body {
  margin: 0;
}
.section-subscribe-grid .collection-card .body {
  font-weight: 400;
  margin-top: 0.88889em;
}
.section-subscribe-grid .collection-card .body > * {
  margin: 0;
}
.section-subscribe-grid .collection-card .collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3.61111em;
  padding: 3.61111em;
}
@media only screen and (max-width: 767px) {
  .section-subscribe-grid .collection-card .collections {
    grid-template-columns: 1fr;
    padding: 65px 0 0;
  }
}
.section-subscribe-grid .collection-card .collections > .product-card {
  padding: 0 1.94444em;
}
@media only screen and (max-width: 959px) {
  .section-subscribe-grid .collection-card .collections > .product-card {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-subscribe-grid .collection-card .collections > .product-card {
    margin: auto;
    max-width: 425px;
  }
}
.section-subscribe-footer .link-blocks {
  max-width: 59.44444em;
  margin: auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .section-subscribe-footer .link-blocks {
    flex-direction: column;
    padding: 65px 20px;
  }
}
.section-subscribe-footer .link-blocks:before {
  content: "";
  position: absolute;
  top: 4.72222em;
  bottom: 2.77778em;
  left: calc(50% - 0.02778em);
  width: 0.08333em;
  background: var(--color-cerulean);
}
@media only screen and (max-width: 767px) {
  .section-subscribe-footer .link-blocks:before {
    top: calc(50% - 0.5px);
    left: 0;
    right: 0;
    bottom: initial;
    height: 1px;
    width: auto;
    margin: 0 20px;
  }
}
.section-subscribe-footer .link-blocks .link-block {
  padding: 5.55556em;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .section-subscribe-footer .link-blocks .link-block {
    padding: 0;
  }
  .section-subscribe-footer .link-blocks .link-block:first-child {
    margin-bottom: 150px;
  }
}
.section-subscribe-footer .link-blocks .link-block .h2 {
  margin: 0 0 0.48889em;
}
.section-subscribe-footer .link-blocks .link-block .large {
  margin: 0 0 1.85185em;
}
.rc-container-wrapper,
.rc_container_wrapper {
  display: none;
}
.cart-count {
  position: absolute;
  top: -0.11111em;
  right: -0.5em;
  padding: 0.05556em 0.22222em;
  background: var(--color-black);
  border-radius: 2.77778em;
  color: var(--color-white);
  font-size: 0.77778em;
  line-height: 1;
  min-height: 14px;
  min-width: 14px;
}
#recharge-te {
  background: none !important;
  padding-top: calc(5.22222em + 100px);
  z-index: 1 !important;
}
#recharge-te .nav--wrapper {
  display: none !important;
}
.index-rainbow-2\:5 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 975px;
  object-fit: fill;
  z-index: -1;
}
.inset-0 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#spill {
  width: auto;
}
#spill .spill-front {
  z-index: 2;
}
#spill .spill--candy-wrapper {
  z-index: 1;
}
#spill .spill--candy-wrapper.active .spill--candy {
  top: 200%;
  left: 100%;
  transition: left 0.5s linear, top 0.5s cubic-bezier(1, 0.04, 1, 1);
  animation: example 0.5s ease-out forwards;
}
#spill .spill--candy-wrapper:not(.active) .spill--candy {
  opacity: 0;
}
#spill .spill--candy-wrapper .spill--candy {
  height: auto;
  width: 11%;
  position: absolute;
  top: 78%;
  left: 50%;
}
@keyframes example {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.btn-link {
  background: none;
  color: var(--color-black);
  font-size: inherit;
  font-weight: 400;
  padding: 0;
  text-decoration: underline;
}
.btn-link:before {
  display: none;
}
#recharge-novum.locked .section-navigation {
  z-index: 1;
}
#recharge-novum.locked .section-instafeed {
  z-index: 0;
}
#recharge-novum #te-modal {
  min-width: 25em;
  width: 40vw !important;
  right: 0 !important;
}
#recharge-novum #te-modal:not(.visible) {
  transform: translate(100%);
}
@media only screen and (max-width: 767px) {
  #recharge-novum #te-modal {
    width: 100% !important;
  }
}
#ReCharge.user-customer .row {
  justify-content: center;
}
#ReCharge.user-customer .row .rc_form__group {
  margin-bottom: 1.5em;
}
.section-login section {
  max-width: 33.33333em;
  margin: auto;
  padding: 7em 20px 20px;
}
.section-login section .heading {
  margin: 0 0 10px;
}
.section-login section .input-wrapper + * {
  margin: 10px 0 14px;
}
.section-login section input {
  font-size: 1.5em;
  line-height: 1;
  padding: 20px;
}
.section-login section input:not(:last-child) {
  margin-bottom: 25px;
}
.section-login section .divider {
  height: 1px;
  width: 145px;
  margin: 50px auto;
}
.section-login .rc-login-wrapper {
  display: block;
  margin: 0 !important;
  text-align: center;
}
.section-login .rc-login-wrapper .tagline {
  margin: 0 0 35px;
}
.section-login .login-wrapper .register,
.section-login .recovery-wrapper .tagline {
  margin: 0 0 30px;
}
@media screen and (max-width: 800px) {
  .section-product-panel h1 {
    margin-bottom: 10px !important;
  }
  .section-product-panel .variant-and-reviews-container {
    margin-bottom: 10px;
  }
}
.section-blog-landing {
  margin: 0 40px 50px;
}
.section-blog-landing .blog-cards {
  padding-bottom: 50px;
}
.blog-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 60px 20px;
}
@media only screen and (max-width: 767px) {
  .blog-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 575px) {
  .blog-cards {
    grid-template-columns: 1fr;
  }
}
.blog-cards a:focus img,
.blog-cards a:hover img {
  transform: scale(1.1);
}
.blog-cards a:focus .content:before,
.blog-cards a:hover .content:before {
  opacity: 1;
}
.blog-cards a:focus .content .btn-arrow .icon,
.blog-cards a:hover .content .btn-arrow .icon {
  margin-left: 7px;
}
.blog-cards li {
  border-radius: 30px;
  overflow: hidden;
  padding-top: 148.678%;
  position: relative;
}
.blog-cards li img,
.blog-cards li .content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.blog-cards li img {
  object-fit: cover;
  transition: transform 0.25s var(--transition-timing);
}
.blog-cards li .content {
  padding: 50px 30px;
}
.blog-cards li .content:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  width: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(27, 45, 87, 0),
    rgba(27, 45, 87, 0.8)
  );
  opacity: 0.9;
  transition: opacity 0.25s var(--transition-timing);
}
.blog-cards li .content * {
  margin: 0;
  z-index: 1;
}
.blog-cards li .content .h3 {
  margin: 10px 0 30px;
}
.blog-cards li .content .btn-arrow .icon {
  margin-left: 2px;
  transition: margin 0.25s var(--transition-timing);
}
.pagination a {
  text-decoration: none;
}
.pagination span {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination span.active {
  background: var(--color-black);
  color: var(--color-beige);
}
.section-article-template {
  margin: 40px;
}
@media only screen and (max-width: 575px) {
  .section-article-template {
    margin: 20px;
  }
}
.section-article-template section {
  margin: auto;
  max-width: 840px;
}
.section-article-template section .hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
}
@media only screen and (max-width: 767px) {
  .section-article-template section .hero {
    grid-gap: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .section-article-template section .hero {
    grid-template-columns: 1fr;
  }
}
.section-article-template section .hero .img-wrapper {
  padding-top: 148.678%;
  position: relative;
}
.section-article-template section .hero .img-wrapper img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}
.section-article-template section .hero .content .date,
.section-article-template section .hero .content .heading,
.section-article-template section .hero .content .excerpt {
  margin: 0;
}
.section-article-template section .hero .content .date {
  margin-bottom: 10px;
}
.section-article-template section .hero .content .heading {
  margin-bottom: 20px;
}
.section-article-template section .article-content {
  margin: 60px 45px 100px;
}
@media only screen and (max-width: 767px) {
  .section-article-template section .article-content {
    margin: 50px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .section-article-template section .article-content {
    margin: 40px 0;
  }
}
.section-article-template section .article-content img {
  display: block;
  margin: 60px auto;
  width: auto;
}
.section-article-template section .article-content .hidden {
  display: none;
}


/* custom styles */
.legal-links > li{
    list-style: none !important;
}

.main-links > li {
    list-style: none !important;
}

.social-media > li {
    list-style: none !important;
}

.store-content{
    color: #1a2b51;
}

.gd-day-padding {
    padding-bottom:29px ;
}
/*# sourceMappingURL=/cdn/shop/t/49/assets/theme.scss.css.map?v=62621344088641961191680539033 */

.slider {
    margin: 0;
    padding: 0;
    list-style: none;
}

.slider li {
    padding-right: 20px;
}

.slider img {
    max-width: 100%;
    height: auto;
}

.js-section-review-slider > .bx-wrapper {
  position: relative;
    left: 15%;
}

.js-section-review-slider > .bx-wrapper > .bx-viewport {
  height: auto !important;
}

 .quote {
  font-weight: 700 !important;
  font-family: Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif !important;
  color:#1B2D57;
}

.text-canteloupe > svg {
  color:#ffb902;
}

.rating {
  margin-right: 1em;
}

.context {
  font-weight: 700;
}

.review-title {
  margin: 0 0 0.5em;
  min-height: 30px;
  color:#1B2D57;
}


.bx-prev{
  position: absolute;
  left: -11%;
}


.bx-next{
  position: absolute;
  right: -6%;
}


@media only screen and (max-width: 768px) {
  .mobile-res-prev{
    left:30px !important;
    color: black;
  }

  .mobile-res-prev:hover{
    color: black;
  }

  .mobile-res-next{
    right:30px !important;
    color: black;
  }
  .mobile-res-next:hover{
    color: black;
  }

  .view-products-heading{
    font-size: 2.3em !important;
  }
  .view-products-description{
    font-size: 0.9em !important;
  }
  .view-products > span {
    font-size: 0.9em !important;
  }

}

.merchandise-img{
  position: relative;
  left: 50%;
  transform: translate(-50%, 0%);
}

.product-name > p{
  color:#1B2D57 !important;
}

.product-name > p:hover{
  color: #ff784f!important;
}

.color-black{
  color: #1B2D57 !important;
}

@media screen and (max-width: 992px) {
  .slider-item-cell {
    padding-right: 43px;
  }
}

.merchandise-prev{
  float: left !important;
}

.merchandise-next{
  float: right !important;
}


.home-slider-container{
  margin: 0 auto
}

.summer-shop-local{
  margin-top: 6%;
}

.land-desc{
  color: #ffffff !important;
}

@media screen and (min-width: 992px) {
  .facet-main-wrapper{
    position: relative;
    width: 33% !important;
  }
}


.facets-landing{
  font-size: 3.5em;
}

.facet-main-wrapper > a {
  margin-top: 6%;
  margin-bottom: 6%;
}

.facets-wrapper {
  color: #F9F3F1 !important;
  top: unset !important;
}

.margin-top-zero{
  margin-top: 0 !important;
}

.width-adjuster{
padding: 0 !important;
}

.font-adjuster{
  font-size: 3.5em !important;
}

.product-details-full-content-header-title{
  color: #1B2D57;
}


.refunds > p{
  font-family: Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
  color: #1B2D57;
}

@media screen and (min-width: 992px) {
  .refunds > p{
    font-size: 1.25vw;
  }

  .product-detail-desc{
    font-size: 1.25vw;
  }
}

.parent-wrapper-1{
  z-index: 1;
}

.about-us-desc{
  font-size: unset;
}

.about-p{
  font-family: Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif !important;
  font-weight: 100 !important;
  font-size:1.8em !important;
}

.font-set{
  font-size: 1.4em !important;
}

.product-detail-heading{
  font-family: Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
  font-size: 1.6em;
}

.product-detail-desc{
  font-family: Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
}

.font-wrapper{
  font-size: 4em !important;
}

.serving-font-size{
  font-size: 1.2em;
}

.product-details-information-tab-content-panel-title{
  color: #1B2D57;
  font-family: Texta, Helvetica, "Helvetica Neue", Arial, "Lucida Grande", sans-serif;
  font-size: 2.7em;
}

.description-total > p{
  color: #1B2D57;
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.3;
  margin-bottom: 1.3em
}